![]() |
SOLVED: [Solved] Blank White page - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +---- Forum: Networking & Access (https://forum.jellyfin.org/f-networking-access) +---- Thread: SOLVED: [Solved] Blank White page (/t-solved-solved-blank-white-page) |
[Solved] Blank White page - dnte1020 - 2024-01-10 Recently I cannot connect to Jellyfin from outside my local network. I just get a blank white page. I am running Jellyfin on linux box along with nginx as a reverse proxy and Jellyfin is set up to run on a subpath. All my other services (Sonarr, Radarr, Sabnzbd, etc.) can be accessed just fine remotely through my domain and their various subpaths. So I know it is not a port forwarding/firewall/DNS issue. I can also access Jellyfin just fine over my local network using the local ip and subpath. So I am pretty sure it is not a Jellyfin config issue. I also don't see any errors in my nginx or Jellyfin logs. Here is my nginx.conf https://pastebin.com/t7AMeaNS I have the original jellyfin section that was working before commented out and tried replacing it verbatim with the one from the nginx subpath HTTPS config example from the guide on jellyfin.org but no dice. I am stumped and any help would be greatly appreciated. RE: Blank White page - TheDreadPirate - 2024-01-10 Can you see these jellyfin accesses in your nginx log? RE: Blank White page - dnte1020 - 2024-01-10 Looks like this: "nginx: 192.168.1.1 - - [09/Jan/2024:17:52:14 -0800] "GET /stream/web/index.html HTTP/1.1" 404 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0"" "stream" is my subpath. RE: Blank White page - tmsrxzar - 2024-01-10 this is not the solution post, see next post for solution RE: Blank White page - TheDreadPirate - 2024-01-10 Change proxy_pass http://127.0.0.1:8096/stream to proxy_pass http://127.0.0.1:8096/stream/ note the slash at the end. The example for a subpath from the docs. Code: location /jellyfin/ { RE: Blank White page - dnte1020 - 2024-01-10 Well boy do I feel stupid. Thank you very much TheDreadPirate. That did it. RE: [Solved] Blank White page - dnte1020 - 2024-01-10 Dammit I picked the wrong post as a solution. RE: [Solved] Blank White page - tmsrxzar - 2024-01-10 edited* |