我有一个node-http-proxy
使用代理表配置的服务器:
var options = {
router: {
'a' : '127.0.0.1:81',
'b': '127.0.0.1:82',
'c': '127.0.0.1:83',
'else' : '127.0.0.1:5000'
}
};
httpProxy.createServer(options).listen(80);
hostname
如果既不是 a、b 或 c 来使用服务器,有没有办法运行它else
?