Replies: 6 comments 2 replies
|
That depends on the reverse proxy your are using for nginx proxy manager you should be able to add custom nginx rules with https://nginxproxymanager.com/advanced-config/#custom-nginx-configurations |
Did you figured out ? I'm looking at this too... |
|
here's an example from the top of my head. Untested but should point you in the right direction upstream plex {
server 127.0.0.1:32400;
keepalive 8;
}
upstream replex {
server 127.0.0.1:3001;
keepalive 8;
}
server {
listen 0.0.0.0:80;
location / {
proxy_pass http://replex;
}
location /video/:/transcode/universal/session {
proxy_pass http://plex;
}
location /library/parts {
proxy_pass http://plex;
}
}
|




Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I've looked at the readme and it mentions rerouting
/video/:/transcode/universal/session
/library/parts
But I'm not sure how to do this, can anyone help me with this?
My setup is using Nginx Proxy Manager to create plex.domain.com on port 80 which is what I use for REPLEX and my docker command is as follows;
docker run --rm -it -p 90:80 -e REPLEX_HOST="http://ip:32400" -e REPLEX_AUTO_SELECT_VERSION=true -e REPLEX_DISABLE_RELATED=true -e REPLEX_CACHE_ROWS=true -e REPLEX_CACHE_ROWS_REFRESH=true ghcr.io/lostb1t/replex:latestAny help is greatly appreciated.
All reactions