Skip to content

Instantly share code, notes, and snippets.

@dnburgess
Created September 9, 2021 17:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnburgess/5e09f5de59d5f0aa5ac908dfc2dadaca to your computer and use it in GitHub Desktop.
Save dnburgess/5e09f5de59d5f0aa5ac908dfc2dadaca to your computer and use it in GitHub Desktop.
DB Tech Vikunja NGINX.conf
server {
listen 80;
location / {
proxy_pass http://frontend:80;
}
location ~* ^/(api|dav|\.well-known)/ {
proxy_pass http://api:3456;
client_max_body_size 20M;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment