seafile-containerized/seafile-caddy/Caddyfile
2023-10-23 20:00:57 +02:00

31 lines
1,014 B
Caddyfile

{
auto_https disable_redirects
}
http:// https:// {
reverse_proxy {$SEAHUB_HOSTNAME}:8000 {
lb_policy header X-Forwarded-For
trusted_proxies private_ranges
}
reverse_proxy /seafdav* {$SEAFILE_SERVER_HOSTNAME}:8080 {
header_up Destination https:// http://
trusted_proxies private_ranges
}
handle_path /seafhttp* {
uri strip_prefix seafhttp
reverse_proxy {$SEAFILE_SERVER_HOSTNAME}:8082 {
trusted_proxies private_ranges
}
}
handle_path /notification* {
uri strip_prefix notification
reverse_proxy {$SEAFILE_SERVER_HOSTNAME}:8083 {
trusted_proxies private_ranges
}
}
reverse_proxy /media/* {$SEAHUB_MEDIA_HOSTNAME}:80 {
lb_policy header X-Forwarded-For
trusted_proxies private_ranges
}
}