added nginx proxy config

This commit is contained in:
2025-08-02 20:32:48 +03:00
parent 2720ab848f
commit 36fb0b4f2b

9
🍪/Vikunja/nginx.conf Normal file
View File

@@ -0,0 +1,9 @@
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:3456;
client_max_body_size 20M;
}
}