bistro/Caddyfile
2024-12-16 16:35:12 +01:00

17 lines
222 B
Caddyfile

:8080 {
encode zstd gzip
handle_path /static/* {
file_server {
root /static
}
}
# handle_path /api/* {
# reverse_proxy backend:8000
# }
reverse_proxy /admin/* backend:8000
reverse_proxy frontend:3000
}