Hello from MCP server
{
"admin": {
"listen": "localhost:2019"
},
"apps": {
"http": {
"servers": {
"main": {
"listen": [":443"],
"routes": [
{
"match": [{ "host": ["pricebookplatform.com"] }],
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [{ "dial": "localhost:8080" }]
}
]
},
{
"match": [{ "host": ["staging.pricebookplatform.com"] }],
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [{ "dial": "localhost:8081" }]
}
]
},
{
"match": [{ "host": ["mcp.pricebookplatform.com"] }],
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [{ "dial": "localhost:8082" }]
}
]
},
{
"match": [{ "host": ["ping.pricebookplatform.com"] }],
"handle": [
{
"handler": "file_server",
"root": "/var/www/ping"
}
]
}
]
}
}
}
}
}