Jellyfin Forum
SOLVED: Android app doesn't load anymore. Plus web address changed after update - 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: Android app doesn't load anymore. Plus web address changed after update (/t-solved-android-app-doesn-t-load-anymore-plus-web-address-changed-after-update)

Pages: 1 2 3 4 5


RE: Android app doesn't load anymore. Plus web address changed after update - ovingiv - 2024-09-23

(2024-09-23, 04:18 PM)TheDreadPirate Wrote: Starting with 10.9 you need to remove the /web location.

Code:
      # location block for /web - This is purely for aesthetics so /web/#!/ works instead of having to go to /web/index.html/#!/
      location ~ ^/web/$ {
          # Proxy main Jellyfin traffic
          proxy_pass http://$jellyfin:8096/web/index.html/;
          proxy_set_header Host $host;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header X-Forwarded-Proto $scheme;
          proxy_set_header X-Forwarded-Protocol $scheme;
          proxy_set_header X-Forwarded-Host $http_host;
      }
This was my exact issue! Thank you so very much!