File: web.config

package info (click to toggle)
mono-tools 4.2-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 13,868 kB
  • sloc: cs: 100,909; sh: 3,845; makefile: 2,040; javascript: 1,557; xml: 126
file content (34 lines) | stat: -rw-r--r-- 1,327 bytes parent folder | download | duplicates (7)
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <configSections>
      <sectionGroup name="mono.aspnet">
	<section name="acceptEncoding"
	type="Mono.Http.Configuration.AcceptEncodingSectionHandler, Mono.Http, Version=1.0.5000.0, PublicKeyToken=0738eb9f132ed756"/>
      </sectionGroup>
    </configSections>
    <system.web>
        <customErrors mode="Off"/>
		<httpRuntime requestValidationMode="2.0" />
		<pages validateRequest="false" />
	<authentication mode= "Forms">
	</authentication>
	<!-- Avoid compilation errors when the Mono.Contributions.dll assembly is not found. The assembly is only on the go-mono.com server -->
	<compilation batch="false" />
    </system.web>
    <mono.aspnet>
        <acceptEncoding>
	    <!-- Change disabled to 'no' to enable gzip content encoding -->
	    <add encoding="gzip" type="Mono.Http.GZipWriteFilter, Mono.Http, Version=1.0.5000.0, PublicKeyToken=0738eb9f132ed756"
	   	 disabled="no" />
	</acceptEncoding>
    </mono.aspnet>

    <appSettings>
	<add key="Title" value="Xamarin API Documentation" />
	<add key="MonoServerDefaultIndexFiles" value="index.aspx, Default.aspx, default.aspx, index.html, index.htm" />
	<add key="MonodocRootDir" value="/mono/lib/monodoc-ios/" />
        <add key="Plugins" value="plugins.def" />
    </appSettings>
    
</configuration>