Hi,
I've got all this setup and working great with my own domain - thanks Fma965!!
One question I can't seem to find an answer to is simply: Is there a way to force https for all sites? So, right now if I go to my site http://www.mydomain.com/sonarr - it works just fine. Likewise, if I go to https://www.mydomain.com/sonarr - it also works. I want the http to redirect to https for all of my /WhateverAppsAreInstalled - can someone point me in the right direction? I tried changing my default conf file from:
location /sonarr {
include /config/nginx/proxy.conf;
proxy_pass http://10.0.1.21:8989/sonarr;
}
to
location /sonarr {
include /config/nginx/proxy.conf;
proxy_pass https://10.0.1.21:9898/sonarr;
}
But that didn't work! Any ideas?
Thanks everyone!!!!