docker_images/caddy/common
Fabien BOURGEOIS 3c08ba5ac7 [IMP]Caddy : enhancements with 2.5.0
* With 2.5.0, format-encoder can be reused ;
* With 2.5.0, no more need for specific forwarded header.
2022-05-03 09:43:48 +02:00

555 B

# Common snippets
 
(global) {
grace_period 5s
log http.log.access {
include http.log.access
output stdout
level INFO
format formatted "[{ts}] {request>remote_addr} {request>headers>X-Forwarded-For} {request>method} {request>host}{request>uri} {status} {request>headers>User-Agent} {request>headers>Referer}" {
time_format "02/01/2006 15:04:05-0700"
}
}
}
 
(odoo) {
reverse_proxy {args.0}:8069
reverse_proxy /longpolling/* {args.0}:8072
encode zstd gzip
}