2024-09-23, 04:18 PM
(This post was last modified: 2024-09-23, 04:18 PM by TheDreadPirate.)
Starting with 10.9 you need to remove the /web location.
Our nginx documentation was updated accordingly.
https://jellyfin.org/docs/general/networking/nginx/
The change was also announced in the 10.9 blog post in May.
https://jellyfin.org/posts/jellyfin-rele...ng-changes
Code:
# location block for /web - This is purely for aesthetics so /web/#!/ works instead of having to go to /web/index.html/#!/
location ~ ^/web/$ {
# Proxy main Jellyfin traffic
proxy_pass http://$jellyfin:8096/web/index.html/;
proxy_set_header Host $host;
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-Protocol $scheme;
proxy_set_header X-Forwarded-Host $http_host;
}
Our nginx documentation was updated accordingly.
https://jellyfin.org/docs/general/networking/nginx/
The change was also announced in the 10.9 blog post in May.
https://jellyfin.org/posts/jellyfin-rele...ng-changes
Quote:Nginx reverse proxy users: If you have a block in your nginx config that begins with location ~ ^/web/$ { and the comment # location block for /web - This is purely for aesthetics [...], please remove that block as it will cause occasional issues with 404's and/or slow performance on 10.9.z.