/usr/share/monodoc/web/web.config is in monodoc-http 2.11+git20131009.5b1ef35-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?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>
|