IISにはいくつかのWebサイトがあります。
で実行されているTomcatもあります
localhost:8087
課題は、Tomcatを外部に公開する方法です。
b.domain2.com
私がしたこと:
B.domain2.comにリバースプロキシURL書き換えルールを追加しました
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://localhost:8087/{R:1}" />
</rule>
</rules>
<outboundRules>
<rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1" >
<match filterByTags="A, Form, Img" pattern="^http(s)?://localhost:8087/(.*)" />
<action type="Rewrite" value="http{R:1}://femiscan.a2itsolutionsllc.com/{R:2}" />
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>
私が見るもの:
ローカルに移動した場合
http://b.domain2.com
私のブラウザはTomcatのウェブサイトを次のように表示します
http://localhost:8087
(なぜ?)
外部ナビゲートした場合Chrome to
http://b.domain2.com
にトンネリングしようとします
http://localhost:8087
IEでナビゲートすると、500エラーが返されます(フィドラー:HTTP/1.1 500 URL書き換えモジュールエラー)。
質問:私は何が間違っているのですか?それはどのように行うことができますか?
アクションが書き換えに設定されているため、URLが書き換えられます。
IISマネージャー:
8087
に変更します。Matches the Pattern
Regular Expressions
*
{HTTP_Host}
Matches the pattern
b.domain2.com
Ignore Case
を確認してくださいRoute to Server Farm
http://
(the name of your server farm)
{R:1}
(注:これには多少の調整が必要な場合がありますが、例から判断すると機能するはずです)