Created
September 9, 2021 17:56
-
-
Save dnburgess/5e09f5de59d5f0aa5ac908dfc2dadaca to your computer and use it in GitHub Desktop.
DB Tech Vikunja NGINX.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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