![]() |
No servers found when using reverse proxy. - 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: No servers found when using reverse proxy. (/t-no-servers-found-when-using-reverse-proxy) Pages:
1
2
|
No servers found when using reverse proxy. - jersak - 2025-02-14 I'm new to jellyfin, just got my first server setup. Running on baremetal Ubuntu 24.04 8th gen Intel I5 GTX 1050 8 GB ram 500 GB SSD for OS/Jellyfin Media on an external SSD Jellyfin 10.10.5 nginx 1.24.0 as reverse proxy If I connect using the LAN IP:port, everything works fine. I can watch my stuff just fine from either browsers on other computers in the house, my android TV, iphone, it's great. However I was setting up a reverse proxy so, in the future, I can have it available outside my LAN for when im not home (yeah i know its not a good idea, but not the point here) and it mostly goes fine but when i try to access it through jellyfin.mydomain i get to the landing jellyfin page and i get a message saying "No servers have been found using the automatic server discovery". Trying to manually add a server using the LAN IP obviously doesn't work. I've read so many guides and posts, made sure no firewall is enabled/blocking, etc, to no avail. This seems like a problem with either the jellyfin networking settings or my nginx config, but I'm at a loss at this point. Has anyone went through anything similar? RE: No servers found when using reverse proxy. - bitmap - 2025-02-14 Can you share your nginx config? RE: No servers found when using reverse proxy. - jersak - 2025-02-14 (2025-02-14, 05:04 AM)bitmap Wrote: Can you share your nginx config? /etc/nginx/sites-available (also symlinked to sites-enabled) Code: server { RE: No servers found when using reverse proxy. - TheDreadPirate - 2025-02-14 That looks like a copy and paste from our docs (huzzah!). Obviously with your domain for the server_name. Try clearing your browser cache? Or use an incognito tab. Also make sure you didn't tell Jellyfin to bind just to your LAN IP since you are using your local loopback address in Nginx. Speaking of, you could also try using the LAN IP of your server instead of the local loopback. RE: No servers found when using reverse proxy. - jersak - 2025-02-14 Hmm, I assume you meant binding it using the jellyfin settings right (Dashboard > Networking > Bind to local network address) right? ![]() If so, no dice. I tried binding it to: - Lan IP and 0.0.0.0 - Same behavior. - 127.0.0.1 for shits and giggles - Makes it only accessible inside the server machine through localhost. Incognito/clearing cache also didn't help. Do I need to make some change in my networking setup? Like port forwarding of any kind, hosts file, etc, even if only used within my lan? I'm assuming not but just to be sure... Tracerout of my personal domain never leaves my network so i didn't think so, but i noticed now it stops at my router and not at the actual server, so that might be it? ![]() RE: No servers found when using reverse proxy. - TheDreadPirate - 2025-02-15 0.0.0.0 = bind to all interfaces available 127.0.0.1 = only bind to local loop back. You would need to use your LAN IP in the bind field. Usually 192.168.X.X or 10.X.X.X. Once you do this you would need to update Nginx to use that LAN IP instead of 127.0.0.1. RE: No servers found when using reverse proxy. - jersak - 2025-02-15 Not working unfortunately. I updated the nginx config file to use my LAN IP ( set $jellyfin 10.0.0.68; ).I've set the value of the field "Bind to local network addres" to the same LAN IP: 10.0.0.68. Restarted both nginx and jellyfin. Still the same behavior. One question: when you create your DNS "A Record", do you use your WAN IP or your LAN IP? RE: No servers found when using reverse proxy. - TheDreadPirate - 2025-02-16 WAN IP. Can you share the output of "sudo ufw status"? RE: No servers found when using reverse proxy. - jersak - 2025-02-16 It is inactive. I've checked for and disabled every possible firewall and similar i could find references to. I think i'm gonna give up for now. This isn't super important tbh since i can use it just fine inside my LAN. I'll try again in the future, maybe using Caddy or Apache. RE: No servers found when using reverse proxy. - TheDreadPirate - 2025-02-16 UFW is a firewall frontend (UI) for either iptables of nftables. UFW being inactive simply means that rules created in UFW aren't applied to the actual firewall. We WANT UFW to be active and the rules created. Code: sudo ufw enable Port 7359 UDP is used for service discovery (currently bugged) and 1900 UDP is for DLNA (don't bother if you don't use this). |