From 44064e280c44fa1ae2a471da641ed2b9439f6aee Mon Sep 17 00:00:00 2001 From: Clifton Palmer Date: Sat, 21 Jan 2023 10:46:44 -0600 Subject: [PATCH] Added section for public --- nginx.conf | 7 +++++++ 1 file changed, 7 insertions(+) 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; + } + } } -- 2.47.2