theblueboy

Members
  • Posts

    6
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

theblueboy's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Great guide! Just wish I'd had it a week ago when I started fiddling with it, would've helped alot!
  2. Nevermind. Got it to work. Changed the address in Muximux from server.domain.com/plexpy to server.domain.com/plexpy/home and it works. Thanks again!
  3. Thanks for your help! Can't get it to work, even though I've set the HTTP Root in Plexpy to /plexpy. I get it to work when I go to server.domain.com/plexpy, but in Muximux when I go to the Plexpy tab I get an Unsecure scripts-warning. But it's not the end of the world, just slightly annoying.
  4. Great, thanks! It helped a lot. Once I figured out that you set URL base in the settings of each application, everything (except Plexpy) works. My setup is: server { listen 443 ssl default_server; root /config/www; index index.html index.htm index.php; server_name servername.*; ssl_certificate /config/keys/letsencrypt/fullchain.pem; ssl_certificate_key /config/keys/letsencrypt/privkey.pem; ssl_dhparam /config/nginx/dhparams.pem; ssl_ciphers 'XXXX'; ssl_prefer_server_ciphers on; client_max_body_size 0; location / { auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; proxy_pass http://192.168.X.X:81; } location ^~ /nzbget { auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; proxy_pass http://192.168.X.X:6789/nzbget; } location ^~ /sonarr { auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; proxy_pass http://192.168.X.X:8989/sonarr; } location ^~ /cp { auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; proxy_pass http://192.168.X.X:5050/cp; } location ^~ /plexpy { auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; proxy_pass http://192.168.X.X:8181/plexpy; } location ^~ /web { auth_basic "Restricted"; auth_basic_user_file /config/nginx/.htpasswd; include /config/nginx/proxy.conf; proxy_pass http://192.168.X.X:32400; } I can't get Plexpy to work, though, even though I've followed the instructions for the proxying headers here: https://github.com/JonnyWong16/plexpy/wiki/Frequently-Asked-Questions-%28FAQ%29#q-why-does-plexpy-not-work-with-my-reverse-proxy-setup I don't relly need Plexpy to work right now, but it would be good so the setup is complete..
  5. I've got everything set up and Muximux is working perfectly locally using my server IP. But, I want to be able to access Muximux externally from the web. So I've just setup a reverse proxy with the ls.io letsencrypt docker. I can setup so I can access for example https://couchpotato.domain.com without a problem. But how the heck do I setup Muximux to work with the reverse proxy? It works if I "Load unsafe scripts" but then I'm no longer using SSL. I've tried setting the adress in Muximux to https://couchpotato.domain.com but it won't load that page safely either. Anyone able to point me in the right direction?