Closed rcdailey closed 6 years ago
This isn't a support forum, the config is provided as is, google around for a guide if you don't understand how it works. Issues are only for issues.
Hi! As this repository was the first one suggested by google, maybe others like me will also look for it... I made it work like this:
server {
[...]
location /plex/ {
proxy_pass http://plex_backend/;
}
if ($http_referer ~ /plex/) {
rewrite ^/web/(.*) /plex/web/$1? redirect;
}
}
Refer on reddit Cheers
I want to access plex using
https://domain.com/plex
, instead ofhttps://plex.domain.com
. How can I achieve this? What parts of your script should I change?