1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
2 | <configuration>
|
---|
3 | <connectionStrings>
|
---|
4 | <add name="HeuristicLab.Authentication"
|
---|
5 | connectionString="Data Source=.;Initial Catalog=HeuristicLab.Authentication;Integrated Security=True"
|
---|
6 | providerName="System.Data.SqlClient" />
|
---|
7 | <add name="HeuristicLab.Services.Access.DataAccess.Properties.Settings.HeuristicLab_ClientManagementConnectionString"
|
---|
8 | connectionString="Data Source=.;Initial Catalog=HeuristicLab.ClientManagement;Integrated Security=True"
|
---|
9 | providerName="System.Data.SqlClient" />
|
---|
10 | </connectionStrings>
|
---|
11 | <system.web>
|
---|
12 | <membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="20">
|
---|
13 | <providers>
|
---|
14 | <clear />
|
---|
15 | <add name="AspNetSqlMemberShipProvider"
|
---|
16 | type="System.Web.Security.SqlMembershipProvider"
|
---|
17 | connectionStringName="HeuristicLab.Authentication"
|
---|
18 | enablePasswordRetrieval="false"
|
---|
19 | enablePasswordReset="true"
|
---|
20 | requiresQuestionAndAnswer="false"
|
---|
21 | passwordFormat="Hashed"
|
---|
22 | applicationName="HeuristicLab.Authentication"
|
---|
23 | requiresUniqueEmail="false"
|
---|
24 | minRequiredPasswordLength="1"
|
---|
25 | minRequiredNonalphanumericCharacters="0"
|
---|
26 | maxInvalidPasswordAttempts="50" />
|
---|
27 | </providers>
|
---|
28 | </membership>
|
---|
29 | <authentication mode="Windows" />
|
---|
30 | <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
|
---|
31 | <providers>
|
---|
32 | <clear />
|
---|
33 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
|
---|
34 | connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
|
---|
35 | </providers>
|
---|
36 | </roleManager>
|
---|
37 | </system.web>
|
---|
38 | </configuration> |
---|