From 36fb0b4f2bbecfc7615c547ab75e65b646144357 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sat, 2 Aug 2025 20:32:48 +0300 Subject: [PATCH] added nginx proxy config --- 🍪/Vikunja/nginx.conf | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 🍪/Vikunja/nginx.conf diff --git a/🍪/Vikunja/nginx.conf b/🍪/Vikunja/nginx.conf new file mode 100644 index 0000000..ef01dab --- /dev/null +++ b/🍪/Vikunja/nginx.conf @@ -0,0 +1,9 @@ +server { + listen 80; + server_name localhost; + + location / { + proxy_pass http://localhost:3456; + client_max_body_size 20M; + } +}