2024-06-27, 10:42 PM
(This post was last modified: 2024-06-27, 10:43 PM by TheDreadPirate.)
You need to remove this section.
As mentioned in our 10.9 annoucement blog post, this section is obsolete.
https://jellyfin.org/posts/jellyfin-rele...n%2010.9.z.
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;
}
As mentioned in our 10.9 annoucement blog post, this section is obsolete.
https://jellyfin.org/posts/jellyfin-rele...n%2010.9.z.