diff --git a/nginx.conf b/nginx.conf index cbfe5c5..f744206 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,6 @@ server { listen 8001 default_server; - server_name web1.example.com; + server_name doh.hnshosting.au; 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 web2.example.com; + server_name easyhandshake.com; 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 web3.example.com; + server_name doh.hnsdns.com; 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 http://main; + proxy_pass https://main; } }