-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb.config
36 lines (30 loc) · 1022 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<sessionState mode="Off" />
</system.web>
<system.webServer>
<caching enabled="false" enableKernelCache="false" />
<httpProtocol>
<customHeaders>
<remove name="X-Powered-By" />
</customHeaders>
</httpProtocol>
<staticContent>
<remove fileExtension=".manifest" />
<mimeMap fileExtension=".manifest" mimeType="application/manifest+json" />
<clientCache cacheControlMode="DisableCache" />
<remove fileExtension=".html" />
<mimeMap fileExtension=".html" mimeType="text/html" />
</staticContent>
</system.webServer>
<location path="index.html">
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Cache-Control" value="no-store, max-age=0" />
</customHeaders>
</httpProtocol>
</system.webServer>
</location>
</configuration>