docs: Add Caddyfile to reverse proxies setup
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
cr1xus 2023-07-20 21:09:02 +00:00
parent 1647282f0b
commit ab8c4728d7
1 changed files with 20 additions and 0 deletions

View File

@ -125,3 +125,23 @@ Put the following config in `cat /etc/apache2/sites-available/vikunja.conf`:
**Note:** The apache modules `proxy`, `proxy_http` and `rewrite` must be enabled for this.
For more details see the [frontend apache configuration]({{< ref "install-frontend.md#apache">}}).
## Caddy
{{< highlight conf >}}
vikunja.domainname.tld {
@paths {
path /api/* /.well-known/* /dav/*
}
handle @paths {
reverse_proxy 127.0.0.1:3456
}
handle {
encode zstd gzip
root * /var/www/html/vikunja
try_files {path} index.html
file_server
}
}
{{< /highlight >}}