all-in-one/Containers/apache/Caddyfile

72 lines
1.6 KiB
Caddyfile
Raw Normal View History

2021-11-30 18:20:42 +08:00
{
auto_https disable_redirects
storage file_system {
root /mnt/data/caddy
}
}
{$PROTOCOL}://{$NC_DOMAIN}:{$APACHE_PORT} {
2021-11-30 18:20:42 +08:00
# Notify Push
route /push/* {
uri strip_prefix /push
reverse_proxy {$NEXTCLOUD_HOST}:7867 {
# trusted_proxies placeholder
}
2021-11-30 18:20:42 +08:00
}
# Talk
route /standalone-signaling/* {
uri strip_prefix /standalone-signaling
reverse_proxy {$TALK_HOST}:8081 {
# trusted_proxies placeholder
}
2021-11-30 18:20:42 +08:00
}
# Collabora
route /browser/* {
reverse_proxy {$COLLABORA_HOST}:9980 {
# trusted_proxies placeholder
}
2021-11-30 18:20:42 +08:00
}
route /hosting/* {
reverse_proxy {$COLLABORA_HOST}:9980 {
# trusted_proxies placeholder
}
2021-11-30 18:20:42 +08:00
}
route /cool/* {
reverse_proxy {$COLLABORA_HOST}:9980 {
# trusted_proxies placeholder
}
2021-11-30 18:20:42 +08:00
}
# Onlyoffice
route /onlyoffice/* {
uri strip_prefix /onlyoffice
reverse_proxy {$ONLYOFFICE_HOST}:80 {
header_up X-Forwarded-Host {http.request.host}/onlyoffice
header_up X-Forwarded-Proto https
# trusted_proxies placeholder
}
}
2021-11-30 18:20:42 +08:00
# Nextcloud
route {
rewrite /.well-known/carddav /remote.php/dav
rewrite /.well-known/caldav /remote.php/dav
header Strict-Transport-Security max-age=31536000;
reverse_proxy localhost:8000 {
# See https://github.com/nextcloud/all-in-one/issues/828
# trusted_proxies placeholder
}
2021-11-30 18:20:42 +08:00
}
# TLS options
tls {
issuer acme {
disable_http_challenge
}
}
2021-11-30 18:20:42 +08:00
}