add caddyfile for local testing

This commit is contained in:
kritzl 2026-05-10 01:36:44 +02:00
commit a85f856284
Signed by: kritzl
SSH key fingerprint: SHA256:5BmINP9VjZWaUk5Z+2CTut1KFhwLtd0ZynMekKbtViM

10
dev.Caddyfile Executable file
View file

@ -0,0 +1,10 @@
localhost {
@api path /api/* /auth/*
handle @api {
reverse_proxy @api host.docker.internal:8000
}
handle {
reverse_proxy * host.docker.internal:4321
}
}