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

diff --git a/conf.d/kanboard.conf b/conf.d/kanboard.conf
new file mode 100644 (file)
index 0000000..edd64c4
--- /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://kanboard_kanboard;
+        proxy_set_header Host $host;
+    }
+}