lostb1t / replex

Remix your Plex hubs
204 stars 7 forks source link

Secure Connections through REPLEX #116

Closed jl94x4 closed 7 months ago

jl94x4 commented 8 months ago

For some reason, when going through REPLEX my Plex connections are not secure.

Using nginx-proxy-manager to get SSL certs on my domain http://replex.plexified.co.uk (it has SSL according to the link) but all plex streams are "Not Secure".

Any reason for this?


docker run --rm -it -p 90:80 -e REPLEX_HOST="http://ip:32400" -e REPLEX_REDIRECT_STREAMS=true -e REPLEX_DISABLE_RELATED=true -e REPLEX_INCLUDE_WATCHED=true  -e REPLEX_HERO_ROWS=tv.toprated,tv.inprogress -e REPLEX_CACHE_ROWS=true -e REPLEX_CACHE_ROWS_REFRESH=true -e REPLEX_CACHE_TTL=0 ghcr.io/lostb1t/replex:latest```
PilaScat commented 8 months ago

same

jl94x4 commented 8 months ago

same

How is your set up?

eandrade92630 commented 7 months ago

"not secure" is kind of confusing. As long as your connection is https (SSL/TLS encrypted) you're fine. The "secure"/padlock only works for the internal network not with reverse proxies. It can't actually tell if it's secure or not.

lostb1t commented 7 months ago

@eandrade92630 is right. The connection between client and the proxy is secure. Its terminated at proxy level after that its unsecured to your plex server. But thats only on your local network/between containers. So plex sees its as "insecure".

hope that explains it