2024-09-17, 10:55 PM
In Nginx proxy manager, did you follow our documentation and add the specified options in the advanced tab?
https://jellyfin.org/docs/general/networ...xy-manager
One of the options is specifically for ensuring that things like bit rate limits are applied correctly.
Without this option, Jellyfin will read the proxy's IP address. With this option in Nginx, in combination with Known Proxies, Jellyfin will read the address in the header for the proxied client.
https://jellyfin.org/docs/general/networ...xy-manager
One of the options is specifically for ensuring that things like bit rate limits are applied correctly.
Code:
proxy_set_header X-Real-IP $remote_addr;
Without this option, Jellyfin will read the proxy's IP address. With this option in Nginx, in combination with Known Proxies, Jellyfin will read the address in the header for the proxied client.