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 |
Beta Was this translation helpful? Give feedback.
-
Did you figured out ? I'm looking at this too... |
Beta Was this translation helpful? Give feedback.
-
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;
}
}
|
Beta Was this translation helpful? Give feedback.
-
I tried inputting it here but it broke the proxy. And also here; |
Beta Was this translation helpful? Give feedback.
-
This works and loads, does this look right? |
Beta Was this translation helpful? Give feedback.
-
Did you get it working ? |
Beta Was this translation helpful? Give feedback.
-
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:latest
Any help is greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions