2024-05-15, 03:57 PM
(This post was last modified: 2024-05-15, 03:57 PM by TheDreadPirate.)
Found this today.
https://jellyfin.org/posts/jellyfin-rele...ng-changes
The last entry in that section.
https://github.com/jellyfin/jellyfin/issues/11540
Try removing this block from your nginx config.
https://jellyfin.org/posts/jellyfin-rele...ng-changes
The last entry in that section.
https://github.com/jellyfin/jellyfin/issues/11540
Try removing this block from your nginx config.
Code:
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;
}