From: Clifton Palmer Date: Sun, 16 Jun 2019 21:30:48 +0000 (-0500) Subject: Bugfixes X-Git-Url: http://git.purplebirdman.com/proxy.git/commitdiff_plain/90d43b290f91759a2650d2833d32ac5b5bb0a76a?hp=d33aa9fa9f6c080680f73b38824025228fa8ac67 Bugfixes --- 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; } } }