new sections
[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                 <sectionGroup name="system.web">
9                         <section name="httpHandlers" type="System.Web.Configuration.HttpHandlersSectionHandler, System.Web" />
10                         <section name="httpModules" type="System.Web.Configuration.HttpModulesConfigurationHandler, System.Web" />
11                         <section name="machineKey" type="System.Web.Configuration.MachineKeyConfigHandler, System.Web" />
12                         <section name="authentication" type="System.Web.Configuration.AuthenticationConfigHandler, System.Web" />
13                 </sectionGroup>
14         </configSections>
15         <system.web>
16                 <httpHandlers>
17                         <add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory" />
18                         <add verb="*" path="*.asax" type="System.Web.HttpForbiddenHandler" />
19                         <add verb="*" path="*.ascx" type="System.Web.HttpForbiddenHandler" />
20                         <add verb="*" path="*.config" type="System.Web.HttpForbiddenHandler" />
21                         <add verb="GET,HEAD" path="*" type="System.Web.StaticFileHandler" />
22                         <add verb="*" path="*" type="System.Web.HttpMethodNotAllowedHandler" />
23                 </httpHandlers>
24                 <httpModules>
25                         <!--<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" />-->
26                 </httpModules>
27                 <authentication mode="Forms">
28                         <forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
29                                 <credentials paswordFormat="Clear">
30                                         <!--<user name="gonzalo" password="gonz"/>-->
31                                 </credentials>
32                 </authentication>
33                 <machineKey validationKey="AutoGenerate" decryptionKey="AutoGenerate" validation="SHA1" />
34         </system.web>
35         
36         <appSettings>
37         <!--<add key="yourkey" value="your value" /> -->
38         <!--<remove key="a key defined higher in the hierarchy" /> -->
39         <!--<clear/> Removes all defined settings -->
40         </appSettings>
41 </configuration>
42