]> Untitled Git - proxy.git/commitdiff
Added section for public
authorClifton Palmer <clifton.james.palmer@protonmail.com>
Sat, 21 Jan 2023 16:46:44 +0000 (10:46 -0600)
committerClifton Palmer <clifton.james.palmer@protonmail.com>
Sat, 21 Jan 2023 16:46:44 +0000 (10:46 -0600)
nginx.conf

index 88c5a789eea4402d36408f6b61a14fa18e1adab4..25d807f111af1e08c05df56bfc0ff86417d3de3e 100644 (file)
@@ -12,4 +12,11 @@ http {
             proxy_set_header Host $host;
         }
     }
             proxy_set_header Host $host;
         }
     }
+    server {
+        server_name public.purplebirdman.com;
+        location / {
+            proxy_pass http://public_web;
+            proxy_set_header Host $host;
+        }
+    }
 }
 }