From 90d43b290f91759a2650d2833d32ac5b5bb0a76a Mon Sep 17 00:00:00 2001 From: Clifton Palmer Date: Sun, 16 Jun 2019 16:30:48 -0500 Subject: [PATCH 1/1] Bugfixes --- nginx.conf | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/nginx.conf b/nginx.conf index f3c2f23..41d51d7 100644 --- a/nginx.conf +++ b/nginx.conf @@ -6,17 +6,15 @@ events { http { server { - listen 80; server_name public.purplebirdman.online; location / { - proxy_pass http://public_web; + proxy_pass http://public_web:80; } } server { - listen 80; server_name forum.purplebirdman.online; location / { - proxy_pass http://forum_web; + proxy_pass http://forum_web:80; } } } -- 2.47.2