2024-01-10, 05:44 PM
I am running a docker instance that contains jellyfin and Nginx Proxy Manager, the latter port fowarded to WAN
I have set up a proxy to google for / (I don't want anything on the root of the site) and a proxy_pass for jellyfin in the advanced tab, like this:
In Dashboard --> Networking
I have selected /jellyfin as Base url
I have set my FQDN DDNS "mysite.ddns.net" as a known proxy
The bitrate limit is never enforced, what am I missing here?
Thanks in advance
I have set up a proxy to google for / (I don't want anything on the root of the site) and a proxy_pass for jellyfin in the advanced tab, like this:
Code:
location ^~ /jellyfin {
proxy_pass http://192.168.1.201:8096; #My jellyfin instance
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $http_host;
proxy_pass_request_headers on;
proxy_buffering off;
}
In Dashboard --> Networking
I have selected /jellyfin as Base url
I have set my FQDN DDNS "mysite.ddns.net" as a known proxy
The bitrate limit is never enforced, what am I missing here?
Thanks in advance