我有一个我想在IIS服务器上设置的播放应用程序。我想设置一个反向代理。在Apache中我会做这样的事情:
ProxyPass /myapp localhost:9000/myapp
ProxyPassReverse /myapp localhost:9000/myapp
我怎样才能完成这样的事情?
答案 0 :(得分:0)
<rule name="IIS reverse proxy for play framework" enabled="true" stopProcessing="true">
<match url="^(appName.*)" />
<action type="Rewrite" url="http://localhost:9000/{R:1}" />
<conditions>
<add input="{HTTP_HOST}" pattern=".+" />
</conditions>
</rule>