mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* added rabbitmq envs in cli-install * fix: change dist path for live server * Update docker-compose.yml --------- Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com>
35 lines
586 B
Caddyfile
35 lines
586 B
Caddyfile
(plane_proxy) {
|
|
request_body {
|
|
max_size {$FILE_SIZE_LIMIT}
|
|
}
|
|
|
|
reverse_proxy /spaces/* space:3000
|
|
|
|
reverse_proxy /god-mode/* admin:3000
|
|
|
|
reverse_proxy /api/* api:8000
|
|
|
|
reverse_proxy /auth/* api:8000
|
|
|
|
reverse_proxy /live/* live:3000
|
|
|
|
reverse_proxy /{$BUCKET_NAME}/* plane-minio:9000
|
|
|
|
reverse_proxy /* web:3000
|
|
}
|
|
|
|
{
|
|
email {$CERT_EMAIL:admin@example.com}
|
|
acme_ca {$CERT_ACME_CA}
|
|
{$CERT_ACME_DNS}
|
|
servers {
|
|
max_header_size 5MB
|
|
client_ip_headers X-Forwarded-For X-Real-IP
|
|
trusted_proxies static {$TRUSTED_PROXIES:0.0.0.0/0}
|
|
}
|
|
}
|
|
|
|
{$SITE_ADDRESS} {
|
|
import plane_proxy
|
|
}
|