/.well-known/openid-configuration issuer contains current sessions port number #7885
-
A little about my setup: The issue I am running into currently is when I go to Does anyone have any direction to point me to getting this resolved? As far as I am aware the port number being listed is not proper, but I have no idea what to do to remove it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Compare your nginx config to this one: https://goauthentik.io/docs/installation/reverse-proxy; especially make sure that the |
Beta Was this translation helpful? Give feedback.
Awesome, thanks for confirming the issue was with nginx. I had
proxy_set_header X-Forwarded-Host $host:$remote_port;
, I changed it toproxy_set_header X-Forwarded-Host $host;
and now everything looks good! Thanks for the help and the quick response