Jellyfin Forum
SOLVED: "Connect to server" -> "Available servers" - 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: "Connect to server" -> "Available servers" (/t-solved-connect-to-server-available-servers)



"Connect to server" -> "Available servers" - Squid - 2025-02-02

I have looked around in the settings for jellyfin.

When i look for available servers, i as expected see my server.

jellyfin.domain.tld
https://192.168.88.3

How do i change so the https has the domain instead of the ip? I am using a reverse proxy. Via web and such it works, or if i manually enter the address. but the discover part doesnt since it shows the ip instead of domain to use.

In networking -> "firewall and proxy settings" i have entered all=https://jellyfin.domain.tld but it does not seem to pick up on the android jellyfin app when looking for servers (after restarting the jellyfin in docker)


RE: "Connect to server" -> "Available servers" - TheDreadPirate - 2025-02-03

You can try adding this environment variable to your docker compose for jellyfin.

Code:
environment:
      - JELLYFIN_PublishedServerUrl=http://example.com



RE: "Connect to server" -> "Available servers" - Squid - 2025-02-03

(Yesterday, 01:04 AM)TheDreadPirate Wrote: You can try adding this environment variable to your docker compose for jellyfin.

Code:
    environment:
      - JELLYFIN_PublishedServerUrl=http://example.com

Thanks for this suggestion. When i went here to enter this in, i saw i already had configure it as the ip Flushed-face

so i assume it worked as expected since i entered it my self Grinning-face

When i look for server after this change, it now shows the domain. Thank you.