19 lines
327 B
Caddyfile
19 lines
327 B
Caddyfile
{$SITE_DOMAIN} {
|
|
encode zstd gzip
|
|
|
|
@storage path /storage /storage/*
|
|
handle @storage {
|
|
uri strip_prefix /storage
|
|
reverse_proxy minio:9000
|
|
}
|
|
|
|
@api path /api /api/* /auth /auth/* /v1 /v1/* /health /plants /plants/*
|
|
handle @api {
|
|
reverse_proxy api:3000
|
|
}
|
|
|
|
handle {
|
|
reverse_proxy landing:3000
|
|
}
|
|
}
|