mirror of
https://github.com/makeplane/plane.git
synced 2026-02-24 04:00:14 +01:00
19 lines
279 B
Caddyfile
19 lines
279 B
Caddyfile
{
|
|
email {$CERT_EMAIL}
|
|
{$CERT_ACME_DNS}
|
|
}
|
|
|
|
{$APP_PROTOCOL}://{$DOMAIN_NAME} {
|
|
request_body {
|
|
max_size {$FILE_SIZE_LIMIT}
|
|
}
|
|
|
|
reverse_proxy /spaces/* space:3000
|
|
|
|
reverse_proxy /api/* api:8000
|
|
|
|
reverse_proxy /{$BUCKET_NAME}/* plane-minio:9000
|
|
|
|
reverse_proxy /* web:3000
|
|
}
|