]> Untitled Git - proxy.git/commitdiff
Added public conf
authorClifton Palmer <clifton.james.palmer@protonmail.com>
Tue, 31 Oct 2023 20:55:03 +0000 (15:55 -0500)
committerClifton Palmer <clifton.james.palmer@protonmail.com>
Tue, 31 Oct 2023 20:55:03 +0000 (15:55 -0500)
conf.d/public.conf [new file with mode: 0644]

diff --git a/conf.d/public.conf b/conf.d/public.conf
new file mode 100644 (file)
index 0000000..056c1ed
--- /dev/null
@@ -0,0 +1,11 @@
+server {
+    listen               443 ssl;
+    server_name          public.purplebirdman.com;
+    ssl_certificate      /etc/ssl/certs/cert.pem;
+    ssl_certificate_key  /etc/ssl/certs/key.pem;
+
+    location / {
+        proxy_pass http://public_public;
+        proxy_set_header Host $host;
+    }
+}