Caddyfile 245 B

1234567891011
  1. :3500 {
  2. handle_path /admin* {
  3. reverse_proxy localhost:3100
  4. }
  5. handle_path /backend* {
  6. reverse_proxy localhost:3170
  7. }
  8. reverse_proxy localhost:3000 # Proxy other requests to your server running on port 3001
  9. }