/usr/share/monodoc/web/web.config is in monodoc-http 2.10-6.
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 34 35 36 37 38 | <?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"/>
<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="MonoServerDefaultIndexFiles"
value="index.aspx, Default.aspx, default.aspx, index.html, index.htm" />
</appSettings>
<location path="edit.aspx">
<system.web>
<authentication mode="Forms">
<forms name=".MONOAUTH" loginUrl="login.aspx"/>
</authentication>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
</configuration>
|