Welcome to mirror list, hosted at ThFree Co, Russian Federation.

web.config « webdoc - github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5facc49c32f853d203f4a49e39b73efda3f65bd2 (plain)
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
<?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>
    </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>