Really having issues getting the reverse proxy setup happy and working. I’ve looked at the documentation and various sample configs I’ve found, but no luck.
I’ve switched from Caddy to nginx since there is more documentation, with Caddy I have the indefinitely spinning plugins screen, so far with nginx I have the same thing - loading plugin information.
I have 8080 open on nftables for testing still, so I can navigate to the local ip:8080 just fine.
nginx config:
server {
listen 80;
server_name scm.example.com;
return 301 https://$host$request_uri; # Redirect HTTP to HTTPS
}
we are going to take a look at this issue at some point. If the problem persists, you may check whether setting up a new SCM-Manager solves the problem.
I did reference that documentation and initially tried that exact config, I believe it resulted in the same, but I will switch back to it and see. @pfeuffer
I believe the core issue was that at some point during setup I had created an additional docker container.
I believe during the step in documentation referring to creating a volume mapping to the scm config file where I specified forwardHeadersEnabled: true, which was not the active/running docker container, so I had not actually set that value!
I simply updated this value inside the config file in the container and along with my final version of nginx config below, was successful:
server {
listen 80;
server_name example.com;
return 301 https://$host$request_uri; # Redirect HTTP to HTTPS
}