-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathWeb.config
More file actions
49 lines (48 loc) · 2.38 KB
/
Web.config
File metadata and controls
49 lines (48 loc) · 2.38 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
<?xml version="1.0"?>
<!--Standard IIS 7.0 Web.config as created by Visual Studio.NET -->
<!-- All changes from the default configuaration is prefixed by '[ServiceStack]:' -->
<configuration>
<appSettings>
<add key="MonoServerDefaultIndexFiles" value="default.htm" />
<!-- for Apache + mod_mono -->
<add key="RootDirectory" value="~/App_Data/files/" />
<add key="ExcludeDirectories" value=".svn,bin,Properties" />
<add key="TextFileExtensions" value=".txt,.sln,.proj,.cs,.config,.asax,.css,.htm,.html,.xml,.js,.md" />
</appSettings>
<connectionStrings />
<system.web>
<compilation debug="true" targetFramework="4.7.2" />
<authentication mode="Windows" />
<customErrors mode="Off" />
<httpHandlers>
<!-- ServiceStack: Handler mapping for IIS 6.0, MONO or VS.NET dev web server -->
<add path="*" type="ServiceStack.HttpHandlerFactory, ServiceStack" verb="*" />
</httpHandlers>
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" />
</system.web>
<!--
The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS.
-->
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<!-- ServiceStack: Handler mapping for IIS 7+ -->
<add name="ServiceStack.Factory" path="*" type="ServiceStack.HttpHandlerFactory, ServiceStack" verb="*"
preCondition="integratedMode" resourceType="Unspecified" allowPathInfo="true" />
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Buffers" culture="neutral" publicKeyToken="cc7b13ffcd2ddd51" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" culture="neutral"
publicKeyToken="cc7b13ffcd2ddd51" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>