![]() |
debian13+apache+jellyfin - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Off Topic (https://forum.jellyfin.org/f-off-topic) +--- Forum: Self-hosting & Homelabs (https://forum.jellyfin.org/f-self-hosting-homelabs) +--- Thread: debian13+apache+jellyfin (/t-debian13-apache-jellyfin--13362) |
debian13+apache+jellyfin - qbwdp - 2025-08-19 I have signed certs and a registered domain. In my apache i have: ProxyPass /socket/ ws ![]() ProxyPassReverse /socket/ ws ![]() ProxyPass / http://localhost:8096/ ProxyPassReverse / http://localhost:8096/ I can go to any browser of computer, android phone, apple phone. type https://my domain.com and it takes me to my jellyfin server and i can log in fine. When i use the jellyfin app on android and put in the above address it just crashes. Apple Jellyfin app just says in red "Could not connect to server". What might I be doing wrong here? I do not wish to open up 8920 port on my firewall and connect that way. 443 is working fine for me coming in and then proxypass is doing the job to pass traffic to the local 8096. Why are the phone apps not working with this setup? RE: debian13+apache+jellyfin - bitmap - 2025-08-19 Can you specify your local IP rather than using localhost? I use nginx, so not much help on Apache, but my setup works just fine on the Android and iOS apps. RE: debian13+apache+jellyfin - qbwdp - 2025-08-19 :%s/localhost/10.10.10.10/g changed localhost to my servers' ip, restarted apache. Again, all browsers on computer, android/apple phone work. But the jellyfin app on android crashed as soon as i put https://mydomian.com and hit connect. The apple jellyfin app just says Could not connect to server. RE: debian13+apache+jellyfin - qbwdp - 2025-08-19 Additional The access log of apache does not move when i try the android app, it just crashes when i hit connect with the address. While the apple jellyfin app does register this in the apache access log: 175.61.2.25 - - [18/Aug/2025:19:37:03 -0500] "GET /system/info/public HTTP/1.1" 302 3284 "-" "Jellyfin/1.6.1.0 CFNetwork/3826.600.41 Darwin/24.6.0" 175.61.2.25 - - [18/Aug/2025:19:37:20 -0500] "GET /system/info/public HTTP/1.1" 302 3284 "-" "Jellyfin/1.6.1.0 CFNetwork/3826.600.41 Darwin/24.6.0" RE: debian13+apache+jellyfin - bitmap - 2025-08-19 Code: server { This is my full nginx config. A 302 is a temporary redirect AFAIK, which you should not be getting. |