-
-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possibly incorrect nginx configuration in docs when using jellyfin in a docker container #903
Comments
Piggybacking on this thread since I encountered similar issues when using the supplied nginx reverse proxy config here: https://jellyfin.org/docs/general/networking/nginx/#nginx-from-a-subdomain-jellyfinexampleorg tl;dr: Using the nginx config as shown results in a 404. The fix was to simply delete the Details: I have nginx running on a separate server named I verified that Jellyfin works by going to (As a quick aside: I noticed that when visiting the base URL, Jellyfin would redirect me to Now I want to get it working through a reverse proxy so I have https and a simpler URL: I have a valid SSL cert for my domain created via acme.sh. It's installed on the nginx server ( I applied the config shown here for "Nginx from a subdomain (jellyfin.example.org)" and made the bare minimum changes to get it to work for my setup: jellyfin.conf.clean.txt I'd visit http://media.mydomain.tld and notice a redirect and then...blank page.' Time to break out
And this is what I get: nginx-borked-location.txt After some experimenting, I deleted the Edit: Here's the output of Edit 2: I was using Jellyfin 10.8.13 |
Apparently the NGINX config changed since when I've reported this bug. The "web/" location is gone, so the "= /" is incorrectly redirecting to the missing "web/" location. |
I've installed jellyfin in a docker container following the official documentation (https://jellyfin.org/docs/general/installation/container/) and using the official image:
If I try to use the nginx config provided in the docs (https://jellyfin.org/docs/general/networking/nginx/) and I try to reach jellyfin container (jellyfin.mydomain.com or jellyfin.mydomain.com/web/) it fails (error 404).
It turns out that the offending line is:
It works with:
Is the nginx documentation outdated? Or is the official image messing with "index.html"?
The text was updated successfully, but these errors were encountered: