2024-01-10, 02:13 AM
(This post was last modified: 2024-01-10, 02:13 AM by TheDreadPirate.)
Change
proxy_pass http://127.0.0.1:8096/stream
to
proxy_pass http://127.0.0.1:8096/stream/
note the slash at the end.
The example for a subpath from the docs.
proxy_pass http://127.0.0.1:8096/stream
to
proxy_pass http://127.0.0.1:8096/stream/
note the slash at the end.
The example for a subpath from the docs.
Code:
location /jellyfin/ {
# Proxy main Jellyfin traffic
# The / at the end is significant.
# https://www.acunetix.com/blog/articles/a-fresh-look-on-reverse-proxy-related-attacks/
proxy_pass http://$jellyfin:8096/jellyfin/;