newapi / Caddyfile
smgc's picture
Update Caddyfile
ef227c1 verified
raw
history blame
237 Bytes
{
admin off
log {
output file /data/caddy.log
format console
level debug
}
}
:3001 {
reverse_proxy localhost:3000
route /api/v1/* {
rewrite * /v1/{path}
reverse_proxy localhost:3000
}
}