We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b0c03f2 + a3faf77 commit 0ea06f4Copy full SHA for 0ea06f4
plex.subdomain.conf.sample
@@ -1,4 +1,4 @@
1
-## Version 2024/07/16
+## Version 2025/05/23
2
# make sure that your plex container is named plex
3
# make sure that your dns has a cname set for plex
4
# 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 {
61
proxy_set_header X-Plex-Device-Vendor $http_x_plex_device_vendor;
62
proxy_set_header X-Plex-Model $http_x_plex_model;
63
}
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
+ }
72
0 commit comments