Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Web/Hive-3.4/Web.config @ 5064

Last change on this file since 5064 was 4905, checked in by cneumuel, 13 years ago

#1233

  • added plugin management features
  • took over client-GUI from old branch
  • merged with bugfixes from old branch
  • added hive-web (for IIS)
File size: 2.3 KB
Line 
1<?xml version="1.0"?>
2<configuration>
3
4  <connectionStrings>
5    <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
6  </connectionStrings>
7 
8  <system.web>
9    <compilation debug="false" targetFramework="4.0" />
10    <membership>
11      <providers>
12        <clear/>
13        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="HeuristicLab.Authentication"/>
14      </providers>
15    </membership>
16    <roleManager enabled="true">
17      <providers>
18        <clear/>
19        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/>
20      </providers>
21    </roleManager>
22    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
23  </system.web>
24 
25  <system.serviceModel>
26    <diagnostics>
27      <messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true" maxMessagesToLog="3000"/>
28    </diagnostics>
29   
30   
31    <!-- TODO from here: -->
32    <behaviors>
33      <serviceBehaviors>
34        <behavior>
35          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
36          <serviceMetadata httpGetEnabled="true"/>
37          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
38          <serviceDebug includeExceptionDetailInFaults="false"/>
39        </behavior>
40      </serviceBehaviors>
41    </behaviors>
42    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
43  </system.serviceModel>
44  <system.webServer>
45    <modules runAllManagedModulesForAllRequests="true"/>
46  </system.webServer>
47 
48</configuration>
Note: See TracBrowser for help on using the repository browser.