fix(docker): reverse proxy to host service in Caddyfile

This commit is contained in:
2026-07-27 09:27:11 -04:00
parent 1a1f2fc99c
commit b0087e12af
+2 -2
View File
@@ -6,12 +6,12 @@
:80 {
# API routes
handle_path /api/* {
reverse_proxy app:8080
reverse_proxy 172.18.0.1:8080
}
# WebSocket gateway
handle /ws {
reverse_proxy app:8080 {
reverse_proxy 172.18.0.1:8080 {
header_up Connection {>Connection}
header_up Upgrade {>Upgrade}
}