2020-05-26 03:30:55 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<configuration>
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<mimeMap fileExtension="json" mimeType="application/json" />
|
|
|
|
<mimeMap fileExtension="woff" mimeType="application/font-woff" />
|
|
|
|
</staticContent>
|
|
|
|
<rewrite>
|
2023-10-09 19:31:36 +01:00
|
|
|
<rules>
|
|
|
|
<rule name="AAD-Redirect" stopProcessing="true">
|
|
|
|
<match url="^aad" ignoreCase="true"/>
|
|
|
|
<conditions>
|
|
|
|
<add input="{HTTP_HOST}" pattern="^cosmos.azure.com" />
|
|
|
|
</conditions>
|
|
|
|
<action type="Redirect" url="/?feature.enableAadDataPlane=true" redirectType="Permanent" />
|
|
|
|
</rule>
|
|
|
|
</rules>
|
2020-05-26 03:30:55 +01:00
|
|
|
<outboundRules>
|
|
|
|
<rule name="Strict-Transport-Security" enabled="true">
|
|
|
|
<match serverVariable="RESPONSE_Strict_Transport_Security" pattern=".*" />
|
|
|
|
<conditions>
|
|
|
|
<add input="{HTTPS}" pattern="on" ignoreCase="true" />
|
|
|
|
</conditions>
|
|
|
|
<action type="Rewrite" value="max-age=31536000; includeSubdomains; preload" />
|
|
|
|
</rule>
|
|
|
|
</outboundRules>
|
|
|
|
</rewrite>
|
|
|
|
<httpProtocol>
|
|
|
|
<customHeaders>
|
|
|
|
<clear />
|
|
|
|
<add name="X-Xss-Protection" value="1; mode=block" />
|
|
|
|
<add name="X-Content-Type-Options" value="nosniff" />
|
2023-09-25 01:53:55 +01:00
|
|
|
<add name="Content-Security-Policy" value="frame-ancestors 'self' portal.azure.com *.portal.azure.com portal.azure.us portal.azure.cn portal.microsoftazure.de df.onecloud.azure-test.net *.fabric.microsoft.com *.powerbi.com *.analysis-df.windows.net" />
|
2020-05-26 03:30:55 +01:00
|
|
|
</customHeaders>
|
|
|
|
<redirectHeaders>
|
|
|
|
<clear />
|
|
|
|
</redirectHeaders>
|
|
|
|
</httpProtocol>
|
|
|
|
</system.webServer>
|
|
|
|
<location path="explorer.html">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
2021-02-04 09:55:13 +00:00
|
|
|
</location>
|
2020-05-26 03:30:55 +01:00
|
|
|
<location path="hostedExplorer.html">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
2021-02-04 09:55:13 +00:00
|
|
|
</location>
|
2021-05-26 21:01:28 +01:00
|
|
|
<location path="cellOutputViewer.html">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
|
|
|
</location>
|
2021-02-04 09:55:13 +00:00
|
|
|
<location path="config.json">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
|
|
|
</location>
|
2020-05-26 03:30:55 +01:00
|
|
|
<location path="mpac/explorer.html">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
2021-02-04 09:55:13 +00:00
|
|
|
</location>
|
2020-05-26 03:30:55 +01:00
|
|
|
<location path="mpac/hostedExplorer.html">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
2021-02-04 09:55:13 +00:00
|
|
|
</location>
|
2021-05-26 21:01:28 +01:00
|
|
|
<location path="mpac/cellOutputViewer.html">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
|
|
|
</location>
|
2021-02-04 09:55:13 +00:00
|
|
|
<location path="mpac/config.json">
|
|
|
|
<system.webServer>
|
|
|
|
<staticContent>
|
|
|
|
<clientCache cacheControlMode="DisableCache" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
|
|
|
</location>
|
2020-12-19 01:26:10 +00:00
|
|
|
</configuration>
|