* RepeatInfo.cs: When doing horizontal rendering use the repeat
[mono.git] / data / machine.config
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <configuration>
4
5         <configSections>
6                 <section name="appSettings" type="System.Configuration.NameValueFileSectionHandler, System" />
7
8                 <section name="system.diagnostics" type="System.Diagnostics.DiagnosticsConfigurationHandler, System" />
9                 <sectionGroup name="system.web">
10                         <section name="httpHandlers"
11                                  type="System.Web.Configuration.HttpHandlersSectionHandler, System.Web" />
12                         <section name="httpModules"
13                                  type="System.Web.Configuration.HttpModulesConfigurationHandler, System.Web" />
14                         <section name="machineKey"
15                                  type="System.Web.Configuration.MachineKeyConfigHandler, System.Web" />
16                         <section name="authentication"
17                                  type="System.Web.Configuration.AuthenticationConfigHandler, System.Web" />
18                         <section name="authorization"
19                                  type="System.Web.Configuration.AuthorizationConfigHandler, System.Web" />
20                         <section name="globalization"
21                                  type="System.Web.Configuration.GlobalizationConfigurationHandler, System.Web" />
22                         <section name="sessionState"
23                                  type="System.Web.SessionState.SessionStateSectionHandler, System.Web" />
24                         <section name="webServices"
25                                  type="System.Web.Services.Configuration.WebServicesConfigurationSectionHandler, System.Web.Services" />
26                         <section name="webControls"
27                                  type="System.Web.Configuration.WebControlsSectionHandler, System.Web" />
28                         <section name="compilation"
29                                  type="System.Web.Configuration.CompilationConfigurationHandler, System.Web" />
30                 </sectionGroup>
31                 <sectionGroup name="system.net">
32                         <section name="settings"
33                                  type="System.Net.Configuration.NetConfigurationHandler, System" />
34                         <section name="connectionManagement"
35                                  type="System.Net.Configuration.ConnectionManagementHandler, System" />
36                         <section name="authenticationModules"
37                                  type="System.Net.Configuration.NetAuthenticationModuleHandler, System" />
38                         <section name="defaultProxy"
39                                  type="System.Net.Configuration.DefaultProxyHandler, System" />
40                         <section name="webRequestModules"
41                                  type="System.Net.Configuration.WebRequestModuleHandler, System" />
42                 </sectionGroup>
43                 <section name="system.drawing" type="System.Configuration.NameValueSectionHandler" />
44         </configSections>
45         <system.net>
46                 <connectionManagement>
47                         <add address="*" maxconnection="2" />
48                 </connectionManagement>
49                 <authenticationModules>
50                         <add type="System.Net.BasicClient" />
51                 </authenticationModules>
52                 <defaultProxy>
53                         <proxy />
54                         <!-- bypassonlocal and proxyaddress are ok -->
55                         <!-- usessystemdefault is not supported -->
56                 </defaultProxy>
57                 <webRequestModules>
58                         <add prefix="http" type="System.Net.HttpRequestCreator, System" />
59                         <add prefix="https" type="System.Net.HttpRequestCreator, System" />
60                         <add prefix="file" type="System.Net.FileWebRequestCreator, System" />
61                 </webRequestModules>
62                 <settings>
63                         <ipv6 enabled="false"/>
64                 </settings>
65         </system.net>
66         <system.web>
67                 <httpHandlers>
68                         <add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory, System.Web" />
69                         <add verb="*" path="*.asmx" validate="false"
70                              type="System.Web.Services.Protocols.WebServiceHandlerFactory, System.Web.Services" />
71                         <add verb="*" path="*.ashx" type="System.Web.UI.SimpleHandlerFactory, System.Web" />
72                         <add verb="*" path="*.asax" type="System.Web.HttpForbiddenHandler, System.Web" />
73                         <add verb="*" path="*.ascx" type="System.Web.HttpForbiddenHandler, System.Web" />
74                         <add verb="*" path="*.config" type="System.Web.HttpForbiddenHandler, System.Web" />
75                         <add verb="*" path="*.cs" type="System.Web.HttpForbiddenHandler, System.Web" />
76                         <add verb="GET,HEAD" path="*" type="System.Web.StaticFileHandler, System.Web" />
77                         <add verb="*" path="*" type="System.Web.HttpMethodNotAllowedHandler, System.Web" />
78                 </httpHandlers>
79                 <httpModules>
80                         <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule, System.Web" />
81                         <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule, System.Web" />
82                         <add name="Session" type="System.Web.SessionState.SessionStateModule, System.Web" />
83                 </httpModules>
84                 <authentication mode="Forms">
85                         <forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
86                                 <credentials passwordFormat="Clear">
87                                         <!--<user name="gonzalo" password="gonz"/>-->
88                                 </credentials>
89                         </forms>
90                 </authentication>
91                 <machineKey validationKey="AutoGenerate" decryptionKey="AutoGenerate" validation="SHA1" />
92                 <!-- Sample globalization settings
93                 <globalization  requestEncoding="iso-8859-1"
94                                 responseEncoding="iso-8859-1"
95                                 fileEncoding="iso-8859-1" 
96                                 culture="en-US"
97                                 uiculture="en-US" />
98                 -->
99                 <sessionState mode="InProc" />
100                 <webServices>
101                         <protocols>
102                                 <add name="HttpSoap"/>
103                                 <add name="HttpPost"/>
104                                 <add name="HttpGet"/>
105                                 <add name="Documentation"/>
106                         </protocols>
107                         <wsdlHelpGenerator href="DefaultWsdlHelpGenerator.aspx" />
108                 </webServices>
109                 <webControls clientScriptsLocation="/web_scripts" />
110                 <compilation debug="false" defaultLanguage="c#">
111                         <compilers>
112                         <compiler language="cs;c#;csharp" extension=".cs" warningLevel="1" compilerOptions=""
113                                   type="Microsoft.CSharp.CSharpCodeProvider, System" />
114                         <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb"
115                                   warningLevel="1" compilerOptions=""
116                                   type="Microsoft.VisualBasic.VBCodeProvider, System" />
117                         </compilers>
118                         <assemblies>
119                                 <!--<add assembly="mscorlib" /> -->
120                                 <add assembly="System" />
121                                 <add assembly="System.Xml" />
122                                 <add assembly="System.Data" />
123                                 <add assembly="System.Web" />
124                                 <add assembly="System.Web.Services" />
125                                 <add assembly="System.Drawing" />
126                                 <add assembly="*" /> <!-- Add assemblies in bin directory -->
127                         </assemblies>
128                 </compilation>
129                 
130         </system.web>
131         
132         <appSettings>
133         <!--<add key="yourkey" value="your value" /> -->
134         <!--<remove key="a key defined higher in the hierarchy" /> -->
135         <!--<clear/> Removes all defined settings -->
136         </appSettings>
137         <system.diagnostics>
138                 <trace autoflush="false" indentsize="4" />
139         </system.diagnostics>
140         <system.drawing>
141         </system.drawing>
142 </configuration>
143
144