www_site/infra/caddy/Caddyfile

22 lines
341 B
Caddyfile
Raw Permalink Normal View History

https://192.168.199.22 {
tls internal
encode gzip
2026-09-11 09:23:00 +00:00
redir /cms /cms/admin 308
handle /cms/* {
2026-09-09 11:18:30 +00:00
reverse_proxy 127.0.0.1:3001
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
}
}