]> Untitled Git - proxy.git/commitdiff
Bugfixes
authorClifton Palmer <cliftonpalmer@pop-os>
Sun, 16 Jun 2019 21:30:48 +0000 (16:30 -0500)
committerClifton Palmer <cliftonpalmer@pop-os>
Sun, 16 Jun 2019 21:30:48 +0000 (16:30 -0500)
nginx.conf

index f3c2f2393849ab67049b2146675d133208991160..41d51d7b0f26be2e0d6c8ffb6f0ecf487b3d8268 100644 (file)
@@ -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;
         }
     }
 }