From: Clifton Palmer Date: Sat, 21 Jan 2023 16:46:44 +0000 (-0600) Subject: Added section for public X-Git-Url: http://git.purplebirdman.com/proxy.git/commitdiff_plain/44064e280c44fa1ae2a471da641ed2b9439f6aee Added section for public --- diff --git a/nginx.conf b/nginx.conf index 88c5a78..25d807f 100644 --- a/nginx.conf +++ b/nginx.conf @@ -12,4 +12,11 @@ http { proxy_set_header Host $host; } } + server { + server_name public.purplebirdman.com; + location / { + proxy_pass http://public_web; + proxy_set_header Host $host; + } + } }