* makefile, makefile.gnu: Add InstrTable to build
[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                 </sectionGroup>
25         </configSections>
26         <system.web>
27                 <httpHandlers>
28                         <add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory, System.Web" />
29                         <add verb="*" path="*.asax" type="System.Web.HttpForbiddenHandler, System.Web" />
30                         <add verb="*" path="*.ascx" type="System.Web.HttpForbiddenHandler, System.Web" />
31                         <add verb="*" path="*.config" type="System.Web.HttpForbiddenHandler, System.Web" />
32                         <add verb="GET,HEAD" path="*" type="System.Web.StaticFileHandler, System.Web" />
33                         <add verb="*" path="*" type="System.Web.HttpMethodNotAllowedHandler, System.Web" />
34                 </httpHandlers>
35                 <httpModules>
36                         <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule, System.Web" />
37                         <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule, System.Web" />
38                 </httpModules>
39                 <authentication mode="Forms">
40                         <forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
41                                 <credentials passwordFormat="Clear">
42                                         <!--<user name="gonzalo" password="gonz"/>-->
43                                 </credentials>
44                         </forms>
45                 </authentication>
46                 <machineKey validationKey="AutoGenerate" decryptionKey="AutoGenerate" validation="SHA1" />
47                 <!-- Sample globalization settings
48                 <globalization  requestEncoding="iso-8859-1"
49                                 responseEncoding="iso-8859-1"
50                                 fileEncoding="iso-8859-1" 
51                                 culture="en-US"
52                                 uiculture="en-US" />
53                 -->
54                 <sessionState mode="InProc" />
55         </system.web>
56         
57         <appSettings>
58         <!--<add key="yourkey" value="your value" /> -->
59         <!--<remove key="a key defined higher in the hierarchy" /> -->
60         <!--<clear/> Removes all defined settings -->
61         </appSettings>
62         <system.diagnostics>
63                 <trace autoflush="false" indentsize="4" />
64         </system.diagnostics>
65 </configuration>
66