From: Clifton Palmer Date: Wed, 12 Mar 2025 18:12:41 +0000 (-0500) Subject: Added godot config X-Git-Url: http://git.purplebirdman.com/proxy.git/commitdiff_plain/refs/heads/master Added godot config --- diff --git a/conf.d/godot.conf b/conf.d/godot.conf new file mode 100644 index 0000000..17619b3 --- /dev/null +++ b/conf.d/godot.conf @@ -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; + } +}