diff --git a/nginx.conf b/nginx.conf index f744206..c149777 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,6 @@ server { listen 8001 default_server; - server_name doh.hnshosting.au; + server_name _; location / { proxy_pass https://doh.hnshosting.au; proxy_set_header Host doh.hnshosting.au; @@ -9,7 +9,7 @@ server { server { listen 8002 default_server; - server_name easyhandshake.com; + server_name _; location / { proxy_pass https://easyhandshake.com:8053; proxy_set_header Host easyhandshake.com; @@ -18,7 +18,7 @@ server { server { listen 8003 default_server; - server_name doh.hnsdns.com; + server_name _; location / { proxy_pass https://doh.hnsdns.com; proxy_set_header Host doh.hnsdns.com; @@ -35,6 +35,6 @@ server { listen 80; server_name _; location / { - proxy_pass https://main; + proxy_pass http://main; } }