我想为转发的请求设置反向代理响应的磁盘缓存。我希望http://localhost:88/的所有请求都转发到https://stackoverflow.com/(作为示例),并遵循以下重写规则:
<rule name="ReverseProxy1" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="https://stackoverflow.com/{R:1}" />
</rule>
哪种效果很好。
我希望https://stackoverflow.com/的所有响应都缓存在磁盘上。我在applicationHost.config中进行了以下设置:
<diskCache scavengerInterval="00:05:00">
<driveLocation path="C:\inetpub\temp\cache" maxUsage="0" />
<compression enabled="true">
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="application/javascript" enabled="true" />
</compression>
<sharedDriveLocation path="" />
</diskCache>
<proxy enabled="true" httpVersion="PassThrough" reverseRewriteHostInResponseHeaders="true">
<cache requestConsolidationEnabled="true" queryStringHandling="Accept" validationInterval="00:01:00" />
</proxy>
<rewrite>
<globalRules>
<rule name="ARR_CacheControl_b17f5877-33f6-4bed-be49-f3c07a38cfef" enabled="true" patternSyntax="Wildcard">
<match url="*" />
<serverVariables>
<set name="ARR_CACHE_CONTROL_OVERRIDE" value="1,max-age=1800" />
</serverVariables>
<conditions>
<add input="{HTTP_HOST}" pattern="stackoverflow.com" />
</conditions>
</rule>
</globalRules>
</rewrite>
不幸的是,磁盘缓存永远不会被击中。我可以通过检查带有X-ARR-CACHE-HIT = 0条目的IIS日志来告诉它。缓存文件夹始终为空。该文件夹是由IIS管理器UI创建的,我提供了对此文件夹的应用程序池标识的访问权限,因此我认为问题不在于对缓存文件夹的访问权限。
我错过了什么吗?在互联网上寻找解决方案并没有给我任何结果,所以任何输入都非常感激。