Right now I have a proxy set up at MyDomain.com:8080, but I'd like to have it secured.
To get this proxy setup I added this to my nginx config file:
server {
listen 8080;
location / {
resolver 8.8.8.8;
proxy_pass http://$http_host$uri$is_args$args;
}
I tried searching but only came up with results for a /reverse/ proxy. I need a regular one.