-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWeb.config
More file actions
56 lines (53 loc) · 1.72 KB
/
Web.config
File metadata and controls
56 lines (53 loc) · 1.72 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
<pages>
<namespaces>
<add namespace="System.Data" />
<add namespace="System.Text" />
<add namespace="System.Xml" />
<add namespace="System.Xml.Linq" />
</namespaces>
</pages>
<authentication mode="Forms">
<forms name=".ASPXAUTH" protection="All" timeout="240" cookieless="UseCookies" />
</authentication>
<customErrors mode="RemoteOnly" defaultRedirect="404.html" />
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="default.cshtml" />
</files>
</defaultDocument>
<caching>
<profiles>
<add extension="xml" kernelCachePolicy="DontCache" policy="DontCache"/>
</profiles>
</caching>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
</staticContent>
<rewrite>
<rules>
<rule name="Redirect to Admin">
<match url="^admin" />
<action type="Redirect" redirectType="Permanent" url="webcomicx/admin" />
</rule>
</rules>
</rewrite>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.5.2.0" newVersion="1.5.2.14234"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>