Having a problem with my reverse proxy set up. It works fine when I use the default port for the UI. Unfortunately, I need to change the port so that it can be used by another docker. I’ve updated the port in the overseerr .conf but for some reason the proxy doesn’t work anymore. I’m getting a 502 error when I try to access the Ui but I’m still getting notifications on my phone.
#Swag reverse proxy
7 messages · Page 1 of 1 (latest)
have you changed the port in the docker compose file as well
Yes I did.
The new port works locally but not through the proxy
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name overseerr.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app overseerr;
set $upstream_port 3590;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}
well, i would think its an error in your reverse proxy config then. unfortunately, i dont know nothing about swag
Not sure how it could be swag when it works just fine with the default port but not a custom one.