Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.JanitorService/3.3/app.config @ 11552

Last change on this file since 11552 was 11223, checked in by ascheibe, 10 years ago

fixed bugs in statistics generator and updated janitor service config

File size: 2.0 KB
RevLine 
[7189]1<?xml version="1.0"?>
2<configuration>
[11223]3<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
4  <connectionStrings>
5    <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
6    <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString"
7       connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;"
8       providerName="System.Data.SqlClient" />
9  </connectionStrings>
10  <system.web>
11    <authentication mode="Forms" />
12    <membership defaultProvider="AspNetSqlMembershipProvider">
13      <providers>
14        <clear />
15        <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" />
16        <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
17      </providers>
18    </membership>
19    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
20      <providers>
21        <clear />
22        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
23        <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
24      </providers>
25    </roleManager>
26  </system.web>
27</configuration>
Note: See TracBrowser for help on using the repository browser.