我正在尝试将ASP.net和Node.js集成到服务器上。
我的期望就在这里。
client ----> IIS Server ----> ASP.NET (except /api/. localhost:80)
(test.foo.com) |---> Node.js (starting with /api/. localhost:4000)
节点应用程序作为Windows服务执行,并在本地提供localhost:4000 / api / in。应该使用http://test.foo.com/api/signin
访问
除/api/
之外的所有请求都应该提供给正常的IIS asp.net。 (例如http://test.foo.com/index.aspx
)
我的试用版
- 安装urlrewrite模块和应用程序请求路由缓存模块
- 添加了重写规则,如下所示
pattern: /api/(.*)
URL rewrite : http://localhost:4000/api/{R:1}
我的结果:
- http://test.foo.com/api/signin
返回503 Service Unavaile
问题:
- 使用URLrewrite
是我案例的正确解决方案吗?
追加
我尝试使用127.0.0.1而不是localhost,使用下面的web.config设置
结果是相同的“503”。
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="/api/(.*)" />
<action type="Rewrite" url="http://127.0.0.1:4000/api/{R:1}" />
</rule>
</rules>
<outboundRules>
<rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
<match filterByTags="A, Form, Img" pattern="^http(s)?://127.0.0.1/(.*)" />
<action type="Rewrite" value="http{R:1}://127.0.0.1:4000/{R:2}" />
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>
再次追加
而是循环适配器,更改为ipv4地址。并试图访问另一台PC。但结果是一样的。
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://192.168.123.12:4000/api/{R:1}" />
</rule>
</rules>
<outboundRules>
<rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
<match filterByTags="A, Form, Img" pattern="^http(s)?://192.168.123.12:4000/api/(.*)" />
<action type="Rewrite" value="http{R:1}://192.168.123.12/{R:2}" />
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>