Hi all,
Just getting started with Authentik. I have an auth.mydomain.tld subdomain setup for Authentik (using the docker installation path)
I copied the nginx conf from https://docs.goauthentik.io/docs/install-config/reverse-proxy
I then modified the server_name fields to my subdomain, and the server line in the upstream to the same.
The only configuration change was to use ports 9000 and 9444 (instead of 9443) for SSL (I have another service using 9443). The site conf for this subdomain is dedicated to Authentik -- there's no other rules in the conf.
I updated the compose file field:
ports:
- "${COMPOSE_PORT_HTTP:-9000}:9000"
- "${COMPOSE_PORT_HTTPS:-9444}:9444"
Only changing 9443 to 9444,
and updated the .env file to include:
#Alternate web port numbers
COMPOSE_PORT_HTTP=9000
COMPOSE_PORT_HTTPS=9444
tl;dr I am able to access authentik on 9000 but get a 502 Bad Gateway on SSL proxy pass, and I am unable to access it directly on 9444, or even locally on SSL/443 (typing in https://auth.mydomain.tld, local or remote).
I can do configuration on the non-SSL, but I'd like to disable that port.