docker: add caddy setup for testing

This commit is contained in:
2025-07-20 23:51:29 -06:00
parent ac67658ad2
commit a01ec82833
2 changed files with 51 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
localhost:64444 {
tls internal
# Proxy /config path to proxy
reverse_proxy /api/* https://127.0.0.1:3000 {
transport http {
tls
tls_insecure_skip_verify
}
}
# Proxy root path to dev server
reverse_proxy http://localhost:5173
}