-
First, thank you. Replex is fantastic and I love having the hero style rows. But I'm having a real issue getting it to work consistently. I will go directly to https://replex.mydomain.com and it will work for a while, but then it stops and doesn't come back. Sometimes it will if I log out and back in, but usually only after a restart of the Docker container. I am using a reverse proxy with NginxProxyManager, disabled remote access, changed my Custom server access URL to be only https://replex.mydomain.com, and yet, sometimes it's there and other times it's not. |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 6 replies
-
What exactly do you mean with it.isn't there? The hero rows don't show anymore? Or mixed rows don't work anymore? You can enable the env setting RUST_LOG="info,replex=trace" to see if Replex still handles incoming requests when you encounter this. Also check the log for errors |
Beta Was this translation helpful? Give feedback.
-
Yes, the hero rows work for a while, then don't. I've got a "trending" collection in both TV and movies, and they both don't show as hero and are no longer combined. Things go back to as if Replex was disabled. I just restarted Replex and opened an incognito window. Loading https://replex.mydomain.com didn't show the hero rows but going to https://app.plex.tv/desktop did show them. I will copy both to try and compare. |
Beta Was this translation helpful? Give feedback.
-
Disable gdm in the network: "Enable local network discovery (GDM)" in plex Also if running docker for plex don't use the host network option. As it will bind to your server ip. Just open the 32400 port with docker Make sure to clear a clients app afterwards (if possible) If that doesn't work you can use this url (Chance token to your token) To see I plex reports the correct server address to your clients |
Beta Was this translation helpful? Give feedback.
-
I already had GDM disabled.
I'm not sure how to disable the local option. |
Beta Was this translation helpful? Give feedback.
-
That local version is your problem. Plex should not be reachable outside of your proxy entrypoint |
Beta Was this translation helpful? Give feedback.
-
Are you using docker compose or a docker command? |
Beta Was this translation helpful? Give feedback.
-
I'm using Unraid and a template from the Community Apps store and I think I've solved it. I first created another Docker network This has put Plex on a different network, a 172.18.0.0/16 network and connecting Replex to the same network allows the containers to talk via Hostname (container name). I added my Replex IP to the
I got most of this from https://www.reddit.com/r/unRAID/comments/q2ojh5/using_multiple_docker_networks_in_unraid/ |
Beta Was this translation helpful? Give feedback.
-
I seem to have a new issue. On Android specifically, the artwork is no longer showing for any items except the Hero row. Looking through the debug logs, I'm seeing a 404 error for this URL. |
Beta Was this translation helpful? Give feedback.
I'm using Unraid and a template from the Community Apps store and I think I've solved it.
I first created another Docker network
docker network create <network name>
and moved Plex to this network.Then in my Replex settings, I added the command
&& docker network connect <network> <container>
to thePost Arguments
under Advanced settings and changed thePlex Host
tohttp://Plex-Media-Server:32400
wherePlex-Media-Server
is the name of the Plex container. By adding the post command, Replex sits on both networks.This has put Plex on a different network, a 172.18.0.0/16 network and connecting Replex to the same network allows the containers to talk via Hostname (container name).
I added my …