文章

Caddy配置

caddy 部署 vue react 等单页面程序可参考的配置:

xxx.com {
    root *  /xxx/xxx/html
    encode zstd gzip
    route {
        reverse_proxy /api localhost:20002
        try_files {path} /index.html
        file_server
    }
}