We are attempting to upgrade to fusion auth 1.41.3 from 1.36.7. Previously 1.36.7 exposed port 9013 for HTTPS via the Docker image. Now it appears that it does not?
The same docker compose bindings that were used previously now don't appear to work:
image: fusionauth/fusionauth-app:1.41.3
ports:
- 9013:9013
I see in the startup that it is exposing 9011 and 9012 as HTTP but I don't see anything about 9013 or HTTPS:
fusionauth_1 | 2022-12-01 07:14:03.005 PM INFO io.fusionauth.http.server.HTTPServer - Starting the HTTP server. Buckle up!
fusionauth_1 | 2022-12-01 07:14:03.041 PM INFO io.fusionauth.http.server.HTTPServer - HTTP server listening on port [9011]
fusionauth_1 | 2022-12-01 07:14:03.042 PM INFO io.fusionauth.http.server.HTTPServer - HTTP server started successfully
fusionauth_1 | 2022-12-01 07:14:03.042 PM INFO io.fusionauth.http.server.HTTPServer - Starting the HTTP server. Buckle up!
fusionauth_1 | 2022-12-01 07:14:03.052 PM INFO io.fusionauth.http.server.HTTPServer - HTTP server listening on port [9012]
fusionauth_1 | 2022-12-01 07:14:03.053 PM INFO io.fusionauth.http.server.HTTPServer - HTTP server started successfully
I attempted to specify the HTTPS port as well but that did not seem to change things:
- FUSIONAUTH_APP_HTTPS_PORT=9013