{ "admin": { "listen": "localhost:2019" }, "apps": { "http": { "servers": { "main_server": { "listen": [":8081"], "routes": [ { "handle_path": "/api/*", "handle": [ { "handler": "reverse_proxy", "upstreams": [ { "dial": "localhost:3000" } ] } ], "match": [ { "type": "path", "paths": ["/api/*"] } ] }, { "handle": [ { "handler": "respond", "status_code": 410, "body": "Service has been migrated. Please update your bookmarks." } ], "match": [ { "type": "path", "paths": ["/old-service/*"] } ] }, { "handle": [ { "handler": "redirect", "to": "https://newsite.com{uri}", "status_code": 301 } ], "match": [ { "type": "path", "paths": ["/redirect-me/*"] } ] }, { "handle": [ { "handler": "encode", "encodings": ["gzip"], "min_length": 1000 }, { "handler": "file_server", "root": "./public", "browse": true, "headers": { "Cache-Control": ["public, max-age=3600"], "X-Served-By": ["Quantum"] } } ] } ] } } } } }