From 3705da5266071b66cc16c241b9d026cfffd144b7 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 15 Dec 2023 15:22:11 +1100 Subject: [PATCH] fix: Try using https --- nginx.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } }