4 hours ago
I looked at your Jellyfin docker compose again. It's using host networking? But Nginx is using bridge networking with port publishing? Usually it is the other way around. Nginx is running on the host network while Jellyfin is in a bridge network.
From a client PC, can you run a tracert/tracepath to your domain name to see the hops it is going through?
Also, remove these from the Advanced tab of Nginx.
Looking at Nginx Proxy Manager's git, those properties are already part of Nginx's config and aren't necessary and could be interfering with Nginx's default config.
From a client PC, can you run a tracert/tracepath to your domain name to see the hops it is going through?
Also, remove these from the Advanced tab of Nginx.
Code:
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
Looking at Nginx Proxy Manager's git, those properties are already part of Nginx's config and aren't necessary and could be interfering with Nginx's default config.