mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
33 lines
652 B
Caddyfile
33 lines
652 B
Caddyfile
{
|
|
admin off
|
|
}
|
|
|
|
(site) {
|
|
reverse_proxy site:3000 {
|
|
health_uri /health
|
|
health_interval 30s
|
|
health_timeout 10s
|
|
health_status 200
|
|
}
|
|
|
|
route /repo/* {
|
|
uri strip_prefix /repo
|
|
reverse_proxy repo-placeholder:80
|
|
}
|
|
}
|
|
|
|
:80 {
|
|
header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"
|
|
import site
|
|
}
|
|
|
|
http://am-d-model.eu {
|
|
header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"
|
|
import site
|
|
}
|
|
|
|
am-d-model.eu {
|
|
header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"
|
|
import site
|
|
}
|