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; + } +}