gaddyfile reverse_proxy example

Added a Caddy reverse_proxy example

Signed-off-by: serafdev <fares@seraf.dev>
This commit is contained in:
فارس 2021-01-06 14:40:04 -05:00 committed by backportbot[bot]
parent 2096923c42
commit 314fec5e0a

View File

@ -107,6 +107,19 @@ NGINX
return 301 $scheme://$host/remote.php/dav;
}
CADDY
^^^^^
::
subdomain.example.com {
reverse_proxy /.well-known/carddav {$NEXTCLOUD_HOST:localhost}/remote.php/dav
reverse_proxy /.well-known/caldav {$NEXTCLOUD_HOST:localhost}/remote.php/dav
reverse_proxy * {$NEXTCLOUD_HOST:localhost}
}
Example
-------