I use this Nginx directive:
listen 443 ssl;
listen [::]:443 ssl;
server_name ide.emig.me;
return 301 https://$server_name:8080$request_uri;
listen 8080 ssl;
listen [::]:8080 ssl;
The problem is, that httpS://ide.emig.me:8080 does NOT work. Only http://ide.emig.me:8080 works
Hi,
I have a working url: http://ide.emig.me:8080 which is hosted inside a docker container.
What I want, is, that my Nginx reverse proxy will forward all connections to https://ide.emig.me to the docker container.
When I want to add a proxy rule, I can only forward 8080 -> 8080 and not...