Files
swiss-datashare/reverse-proxy/Caddyfile
2024-12-24 16:06:59 +01:00

8 lines
182 B
Caddyfile

:3000 {
# Reverse proxy for /api
reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080}
# Reverse proxy for all other requests
reverse_proxy http://localhost:{$PORT:3333}
}