我有一个带有一个ip的牛仔服务器。
如何在cowboy Web服务器中向一台服务器添加多个sites / ip?
答案 0 :(得分:1)
使用cowboy routing。路由方案如下
[
{'http://www.host1.com', [
{"/path1", handler, [args]},
{"/path2",handler,[args]}
]},
{'http://www.host2.com', [
{"/path1", handler, [args]},
{"/path2",handler,[args]}
]},
].
非常直接。