-
Notifications
You must be signed in to change notification settings - Fork 3
/
Web.config
30 lines (24 loc) · 807 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
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="httpCompression" type="Compression.CompressionConfiguration"/>
</configSections>
<httpCompression format="deflate">
<staticTypes>
<add mimeFormat="text/*" enabled="true"/>
<add mimeFormat="message/*" enabled="true"/>
<add mimeFormat="application/javascript" enabled="true"/>
<add mimeFormat="application/json" enabled="true"/>
<add mimeFormat="*/*" enabled="false"/>
</staticTypes>
</httpCompression>
<system.web>
<compilation targetFramework="4.0"/>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<remove name="CompressionModule"/>
<add name="CompressionModule" type="HttpModules.CompressionModule"/>
</modules>
</system.webServer>
</configuration>