Skip to content

Commit 0ea06f4

Browse files
authored
Merge pull request #757 from gianmarco-mameli/plex-fix-external-srt-subtitles-are-not-working
2 parents b0c03f2 + a3faf77 commit 0ea06f4

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

plex.subdomain.conf.sample

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2024/07/16
1+
## Version 2025/05/23
22
# make sure that your plex container is named plex
33
# make sure that your dns has a cname set for plex
44
# if plex is running in bridge mode and the container is named "plex", the below config should work as is
@@ -61,4 +61,12 @@ server {
6161
proxy_set_header X-Plex-Device-Vendor $http_x_plex_device_vendor;
6262
proxy_set_header X-Plex-Model $http_x_plex_model;
6363
}
64+
65+
location /library/streams/ {
66+
set $upstream_app plex;
67+
set $upstream_port 32400;
68+
set $upstream_proto http;
69+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
70+
proxy_pass_request_headers off;
71+
}
6472
}

0 commit comments

Comments
 (0)