SOLVED: Web server stuck at logo (remotely and locally) - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: SOLVED: Web server stuck at logo (remotely and locally) (/t-solved-web-server-stuck-at-logo-remotely-and-locally) |
Web server stuck at logo (remotely and locally) - supahfox - 2024-10-18
RE: Web server stuck at logo (remotely and locally) - TheDreadPirate - 2024-10-18 I don't see any connection attempts in your log. Is the Windows firewall open for Jellyfin? Click Start > type Resource Monitor > click Network tab > expand Listening ports table Find jellyfin.exe on port 8096, what does it say in the firewall status column? RE: Web server stuck at logo (remotely and locally) - supahfox - 2024-10-18 (2024-10-18, 04:32 AM)TheDreadPirate Wrote: I don't see any connection attempts in your log. Is the Windows firewall open for Jellyfin? Ports are enabled and unrestricted RE: Web server stuck at logo (remotely and locally) - TheDreadPirate - 2024-10-18 Is your server's address static? Are you using the correct address? http://192.168.1.20:8096 Do you have a VPN running on the server? How about a pihole on your network? RE: Web server stuck at logo (remotely and locally) - supahfox - 2024-10-18 Okay, it's seems that now it's working locally but not remotely with my own address. And yes, I'm using a reverse proxy Code: #user nobody; I'm not using any kind of vpn or pihole RE: Web server stuck at logo (remotely and locally) - supahfox - 2024-10-18 (2024-10-18, 04:42 AM)TheDreadPirate Wrote: Is your server's address static? Are you using the correct address?ip address is static, yes RE: Web server stuck at logo (remotely and locally) - TheDreadPirate - 2024-10-18 While not strictly necessary for basic connections, you're missing the /socket block. You are also missing some proxy_set_header options in your / location. Look over our Nginx docs and try making adjustments to your server block accordingly. https://jellyfin.org/docs/general/networking/nginx/ For the moment, focus on mirroring the / and /socket location blocks in our documentation. Replace $jellyfin with localhost, as you currently have it, or you can set $jellyfin to equal local host (in our documentation). I'm not 100% certain whether the under-configured Nginx is the problem, but we want to eliminate that as a factor. Unrelated, gzip compression should be disabled for security reasons. It weakens encryption. RE: Web server stuck at logo (remotely and locally) - supahfox - 2024-10-19 Working like a charm now! Idk what was the error but at least it's working as before RE: Web server stuck at logo (remotely and locally) - SpecialBrownie - 2024-11-21 I am facing the exact same problem today. Jellyfin was working until last night but this morning, it went kaput. 1. Win 10, 8 GB ram 2. Static IP 3. Firewall listening port - allowed, not restricted 4. Logs have no errors 5. Not accessible using localhost or the ipaddress on the installed machine 6. Remote comp on the local network gets the same splash screen with nothing loading 7. I didn't change the port, didn't install anything new on the computer that might have changed the port so it's still on the default one This happened once in the past on my win11 machine too and I ended up blaming some update and reinstalled on win 10 machine with all updates turned off. Looks like it's a JF issue as it happens often regardless of what's going on. RE: Web server stuck at logo (remotely and locally) - SpecialBrownie - 2024-11-21 update on this: Browser used earlier: Brave (fully updated) on both machines - stuck on the splash screen Browser retested on: Edge (fully updated) on both machines - JFin works Looks like it's a browser issue, weird! |