We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c1688d commit 2c73d56Copy full SHA for 2c73d56
jellyfin.subfolder.conf.sample
@@ -11,18 +11,11 @@ location ^~ /jellyfin/ {
11
include /config/nginx/proxy.conf;
12
resolver 127.0.0.11 valid=30s;
13
set $upstream_jellyfin jellyfin;
14
+ rewrite /jellyfin(.*) $1 break;
15
proxy_pass http://$upstream_jellyfin:8096;
16
17
proxy_set_header Range $http_range;
18
proxy_set_header If-Range $http_if_range;
-}
19
-
20
-location ^~ /jellyfinwebsocket {
21
- include /config/nginx/proxy.conf;
22
- resolver 127.0.0.11 valid=30s;
23
- set $upstream_jellyfin jellyfin;
24
- proxy_pass http://$upstream_jellyfin:8096;
25
26
proxy_set_header Upgrade $http_upgrade;
27
proxy_set_header Connection $http_connection;
28
}
0 commit comments