-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.config
executable file
·26 lines (26 loc) · 1.43 KB
/
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="AccountId" value="UA-45082108-1" />
<add key="PreScript" value="<!-- Analytics Begin -->" />
<add key="PostScript" value="<!-- Analytics End -->" />
<add key="NoAsync" value="" />
<add key="ExcludedExtensions" value=".axd,.xml" />
</appSettings>
<system.web>
<httpModules>
<add name="GoogleAnalyticsModule" type="GoogleAnalyticsModule.GoogleAnalyticsHttpModule, GoogleAnalyticsModule" />
</httpModules>
</system.web>
<!--<system.webServer>
<modules>
<add name="GoogleAnalyticsModule" type="GoogleAnalyticsModule.GoogleAnalyticsHttpModule, GoogleAnalyticsModule" />
</modules>
</system.webServer>-->
<system.webServer>
<handlers>
<add name="HTML" path="*.html" verb="GET" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
<add name="HTM" path="*.htm" verb="GET" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
</handlers>
</system.webServer>
</configuration>