]> Untitled Git - proxy.git/commitdiff
Added godot config master
authorClifton Palmer <clifton.james.palmer@protonmail.com>
Wed, 12 Mar 2025 18:12:41 +0000 (13:12 -0500)
committerClifton Palmer <clifton.james.palmer@protonmail.com>
Wed, 12 Mar 2025 18:12:41 +0000 (13:12 -0500)
conf.d/godot.conf [new file with mode: 0644]

diff --git a/conf.d/godot.conf b/conf.d/godot.conf
new file mode 100644 (file)
index 0000000..17619b3
--- /dev/null
@@ -0,0 +1,10 @@
+server {
+    listen               443 ssl;
+    server_name          godot.purplebirdman.com;
+    ssl_certificate      /etc/letsencrypt/live/purplebirdman.com-0001/fullchain.pem;
+    ssl_certificate_key  /etc/letsencrypt/live/purplebirdman.com-0001/privkey.pem;
+    location / {
+        proxy_pass http://godot_web;
+        proxy_set_header Host $host;
+    }
+}