fix: Try with http on main
All checks were successful
Build Docker / Build Docker (push) Successful in 24s

This commit is contained in:
Nathan Woodburn 2023-12-15 15:26:08 +11:00
parent 3705da5266
commit 7ab9be9160
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -1,6 +1,6 @@
server { server {
listen 8001 default_server; listen 8001 default_server;
server_name doh.hnshosting.au; server_name _;
location / { location / {
proxy_pass https://doh.hnshosting.au; proxy_pass https://doh.hnshosting.au;
proxy_set_header Host doh.hnshosting.au; proxy_set_header Host doh.hnshosting.au;
@ -9,7 +9,7 @@ server {
server { server {
listen 8002 default_server; listen 8002 default_server;
server_name easyhandshake.com; server_name _;
location / { location / {
proxy_pass https://easyhandshake.com:8053; proxy_pass https://easyhandshake.com:8053;
proxy_set_header Host easyhandshake.com; proxy_set_header Host easyhandshake.com;
@ -18,7 +18,7 @@ server {
server { server {
listen 8003 default_server; listen 8003 default_server;
server_name doh.hnsdns.com; server_name _;
location / { location / {
proxy_pass https://doh.hnsdns.com; proxy_pass https://doh.hnsdns.com;
proxy_set_header Host doh.hnsdns.com; proxy_set_header Host doh.hnsdns.com;
@ -35,6 +35,6 @@ server {
listen 80; listen 80;
server_name _; server_name _;
location / { location / {
proxy_pass https://main; proxy_pass http://main;
} }
} }