我正在尝试使用 Windows Server 2016 上的 IIS 10 设置反向代理,该代理必须将请求传递给 Apache Tomcat webapp。
它适用于“基本”标签内的 URL(例如 a 或 img),但我需要配置出站规则来处理 IIS 配置提供的标签(a、iframe、img 等),例如:
<use xlink:href="..." >
<button onclick="..." >
使用自定义标签在某种程度上确实有效,例如在use
带有href
属性的标签内,但不是xlink:href
。
以下是发送到浏览器的基本测试文件的内容:
<!DOCTYPE html>
<html>
<head>
<title>TEST</title>
<link rel="stylesheet" type="text/css" href="https://external.mydomain.net/css/libs/bootstrap.min.css">
</head>
<body>
<a href="https://external.mydomain.net/link">Some link</a>
<button onclick="location.href='http://localhost:8080/link';" >Button</button>
<div data-url="http://localhost:8080/link" />
<svg>
<use
href="https://external.mydomain.net/images/logos.svg#logo-g"
xlink:href="http://localhost:8080/images/logos.svg#logo-g">
</use>
</svg>
http://localhost:8080/link
</body>
</html>
有些 URL 会被重写(例如 a/href 或 svg/href),但有些则不会(例如 button/onclick 或 svg/xlink:href)
这是 IIS 配置文件
<configuration>
<system.webServer>
<rewrite>
<outboundRules>
<rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
<match filterByTags="A, Area, Base, Form, Head, IFrame, Img, Input, Link, Script, CustomTags" customTags="use" pattern="^http(s)?://localhost:8080(.*)" />
<action type="Rewrite" value="https://external.mydomain.net{R:2}" />
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
<customTags>
<tags name="use">
<tag name="use" attribute="xlink:href" />
<tag name="use" attribute="href" />
<tag name="input" attribute="value" />
<tag name="button" attribute="onclick" />
<tag name="div" attribute="data-url" />
</tags>
</customTags>
</outboundRules>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://localhost:8080/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
问题是,显然我需要改变全部http://localhost:8080/...
从到 的URL https://external.mydomain.net/...
,无论它们在后端服务器的响应中的位置如何。
在其他配置中,我使用 httpd 作为反向代理,并且一切都运行正常,但对于这个特定的服务器,我只能使用 IIS(有一些内容通过 IIS 提供)。
是否可以配置 IIS 来执行这样的任务?