Files
windmill/frontend/Caddyfile
2022-12-25 08:05:39 +01:00

16 lines
280 B
Caddyfile

{
auto_https off
}
http://localhost {
bind {$ADDRESS}
reverse_proxy /api/* http://localhost:8000
reverse_proxy /* http://localhost:3000
reverse_proxy /ws/* http://localhost:3001
}
https://localhost {
bind {$ADDRESS}
reverse_proxy /ws/* http://localhost:3001
}