From: Clifton Palmer Date: Sun, 16 Jun 2019 16:23:24 +0000 (-0500) Subject: Added forum X-Git-Url: http://git.purplebirdman.com/proxy.git/commitdiff_plain/d33aa9fa9f6c080680f73b38824025228fa8ac67?ds=sidebyside Added forum --- diff --git a/nginx.conf b/nginx.conf index 96a5686..f3c2f23 100644 --- a/nginx.conf +++ b/nginx.conf @@ -12,4 +12,11 @@ http { proxy_pass http://public_web; } } + server { + listen 80; + server_name forum.purplebirdman.online; + location / { + proxy_pass http://forum_web; + } + } }