mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-24 07:30:57 +01:00
Published Server URIs does not apply a subpath input #3573
Labels
No labels
area:database
awaiting-feedback
backend
blocked
breaking change: web api
bug
build
ci
confirmed
discussion needed
dotnet future
downstream
duplicate
EFjellyfin.db
enhancement
feature
future
github-actions
good first issue
hdr
help wanted
invalid
investigation
librarydb
live-tv
lyrics
media playback
music
needs testing
nuget
performance
platform
pull-request
question
regression
release critical
requires-web
roadmap
security
security
stale
support
syncplay
ui & ux
upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: starred/jellyfin#3573
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @PanDoreS on GitHub (Jan 25, 2022).
Hey there!
I've been struggling to apply the last bit of my Jellyfin server.
I'm trying to setup a reverse proxy with the Docker image of Jellyfin.
The setup works quite well, except on the fact that I'm unable to add Jellyfin as a subpath.
System:
OS: Debian 10
Virtualization: Docker
Clients: Browser
Browser: Version 15.2 (17612.3.6.1.6)
Jellyfin Version: 10.7.7
Installed Plugins: None
Reverse Proxy: Nginx
I've been following this documentation from the Jellyfin website.
For now, no traffic is passed through Nginx as I'm testing directly with the exposed Docker port.
From what I understood of the documentation, I should insert the raw subpath in the
Published Server URIsfield.The goal for me is to have
https://server.uri:8096/jellyfin.However, the output
/jellyfindoesn't change the subpath, after, of course, restarting the server.Looking at the logs I can observe the following error:
From what I read of the code, it is expected to have the value split by a
=character.I've tried each setting parsed in the first half,
allandexternal.I've also tried multiple settings like
server.uri/jellyfin,https://server.uri/jellyfin.No luck, either I hit a parsing error, or the setting is not applied.
cURLing the server on
/jellyfineach time gives a 404 error:Would you have any tips on what I'm missing here?
Thanks a lot!
@crobibero commented on GitHub (Jan 25, 2022):
Have you tried setting your baseUrl?
https://jellyfin.org/docs/general/networking/index.html#base-url
@PanDoreS commented on GitHub (Jan 25, 2022):
Yep, I'm definitively tired. It was indeed the wrong setting I was changing.
Sorry about that and thanks for your help crobibero!