我正在尝试使用 Caddy 托管一个 react 应用程序,其中一些端点重定向到其他 docker 容器,其余的重写到基本 url(也就是 react 应用程序的 index.html 文件)。
但是代理不会转发到其他容器,它只是显示反应应用程序。
如何让它显示 api 页面而不是 react 应用程序?
example.com {
gzip
root /app/frontend
proxy /staticfiles django:8000 {
transparent
}
proxy /api django:8000 {
transparent
}
proxy /admin django:8000 {
transparent
}
rewrite {
to .* /index.html
}
}