Replies: 1 comment
-
nvm figured it out on my own, i was missing the proxy ip inside TrustedProxies |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How can i get the real ip if the application is behind a proxy, for example nginx proxy manager?
I already have the proxy configured to forward all relevant info but in the logs i still get the proxy ip address
`
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Nginx-Proxy true;
`
Beta Was this translation helpful? Give feedback.
All reactions