From d33aa9fa9f6c080680f73b38824025228fa8ac67 Mon Sep 17 00:00:00 2001 From: Clifton Palmer Date: Sun, 16 Jun 2019 11:23:24 -0500 Subject: [PATCH] Added forum --- nginx.conf | 7 +++++++ 1 file changed, 7 insertions(+) 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; + } + } } -- 2.47.2