0

我没有看到 Starcounter 中没有内置支持来进行站点绑定,例如以 Internet Information Server 的相同方式,您可以根据使用的域名将呼叫路由到特定站点,如下图所示。有什么推荐的方法来做到这一点吗?

在此处输入图像描述

4

1 回答 1

2

在 Starcounter 中,您可以在 scnetworkgateway.xml 文件的 ReverseProxies 配置部分设置多个域。

例子:

<ReverseProxy>
  <DestinationIP>127.0.0.1</DestinationIP>
  <DestinationPort>8080</DestinationPort>
  <StarcounterProxyPort>80</StarcounterProxyPort>
  <MatchingHost>my.website.com</MatchingHost>
</ReverseProxy>

阅读更多有关starcounter.io -反向代理功能的信息。

于 2016-07-05T09:45:55.037 回答