]> Untitled Git - proxy.git/commitdiff
Added forum
authorClifton Palmer <cliftonpalmer@pop-os>
Sun, 16 Jun 2019 16:23:24 +0000 (11:23 -0500)
committerClifton Palmer <cliftonpalmer@pop-os>
Sun, 16 Jun 2019 16:23:24 +0000 (11:23 -0500)
nginx.conf

index 96a568611e59c39ed018b3a007b68edd42cea4e9..f3c2f2393849ab67049b2146675d133208991160 100644 (file)
@@ -12,4 +12,11 @@ http {
             proxy_pass http://public_web;
         }
     }
             proxy_pass http://public_web;
         }
     }
+    server {
+        listen 80;
+        server_name forum.purplebirdman.online;
+        location / {
+            proxy_pass http://forum_web;
+        }
+    }
 }
 }