www_site/infra/caddy/Caddyfile

23 lines
387 B
Caddyfile
Raw Normal View History

https://192.168.199.22 {
tls internal
encode gzip
2026-09-09 09:02:46 +00:00
handle_path /cms/* {
reverse_proxy 127.0.0.1:3001 {
header_down Location ^/admin(.*)$ /cms/admin$1
}
2026-09-09 09:02:46 +00:00
}
handle /api/* {
reverse_proxy 127.0.0.1:8000
}
handle /healthz {
reverse_proxy 127.0.0.1:8000
}
handle {
reverse_proxy 127.0.0.1:3000
}
}