]> Untitled Git - proxy.git/commitdiff
Updated kanban conf
authorClifton Palmer <clifton.james.palmer@protonmail.com>
Sat, 4 Nov 2023 15:53:51 +0000 (10:53 -0500)
committerClifton Palmer <clifton.james.palmer@protonmail.com>
Sat, 4 Nov 2023 15:53:51 +0000 (10:53 -0500)
conf.d/kanban.conf [new file with mode: 0644]
conf.d/kanboard.conf [deleted file]

diff --git a/conf.d/kanban.conf b/conf.d/kanban.conf
new file mode 100644 (file)
index 0000000..53f3a74
--- /dev/null
@@ -0,0 +1,14 @@
+server {
+    listen               443 ssl;
+    server_name          kanban.purplebirdman.com;
+    ssl_certificate      /etc/ssl/certs/cert.pem;
+    ssl_certificate_key  /etc/ssl/certs/key.pem;
+
+    # for large file uploads
+    client_max_body_size 20M;
+
+    location / {
+        proxy_pass http://kanban_web;
+        proxy_set_header Host $host;
+    }
+}
diff --git a/conf.d/kanboard.conf b/conf.d/kanboard.conf
deleted file mode 100644 (file)
index edd64c4..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-server {
-    listen               443 ssl;
-    server_name          kanban.purplebirdman.com;
-    ssl_certificate      /etc/ssl/certs/cert.pem;
-    ssl_certificate_key  /etc/ssl/certs/key.pem;
-
-    # for large file uploads
-    client_max_body_size 20M;
-
-    location / {
-        proxy_pass http://kanboard_kanboard;
-        proxy_set_header Host $host;
-    }
-}