1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!--
|
---|
3 | For more information on how to configure your ASP.NET application, please visit
|
---|
4 | http://go.microsoft.com/fwlink/?LinkId=169433
|
---|
5 | -->
|
---|
6 | <configuration>
|
---|
7 | <connectionStrings>
|
---|
8 | <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
|
---|
9 | <!--<add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient" />-->
|
---|
10 | </connectionStrings>
|
---|
11 | <appSettings>
|
---|
12 | <add key="webpages:Version" value="2.0.0.0" />
|
---|
13 | <add key="webpages:Enabled" value="false" />
|
---|
14 | <add key="PreserveLoginUrl" value="true" />
|
---|
15 | <add key="ClientValidationEnabled" value="true" />
|
---|
16 | <add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
---|
17 | </appSettings>
|
---|
18 | <system.web>
|
---|
19 | <compilation debug="true" targetFramework="4.0" />
|
---|
20 | <authentication mode="Forms">
|
---|
21 | <forms loginUrl="~/Account/Login" timeout="2880" />
|
---|
22 | </authentication>
|
---|
23 | <membership>
|
---|
24 | <providers>
|
---|
25 | <clear />
|
---|
26 | <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" />
|
---|
27 | </providers>
|
---|
28 | </membership>
|
---|
29 | <roleManager enabled="true">
|
---|
30 | <providers>
|
---|
31 | <clear />
|
---|
32 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
|
---|
33 | </providers>
|
---|
34 | </roleManager>
|
---|
35 | <pages>
|
---|
36 | <namespaces>
|
---|
37 | <add namespace="System.Web.Helpers" />
|
---|
38 | <add namespace="System.Web.Mvc" />
|
---|
39 | <add namespace="System.Web.Mvc.Ajax" />
|
---|
40 | <add namespace="System.Web.Mvc.Html" />
|
---|
41 | <add namespace="System.Web.Optimization" />
|
---|
42 | <add namespace="System.Web.Routing" />
|
---|
43 | <add namespace="System.Web.WebPages" />
|
---|
44 | </namespaces>
|
---|
45 | </pages>
|
---|
46 | </system.web>
|
---|
47 | <system.webServer>
|
---|
48 | <validation validateIntegratedModeConfiguration="false" />
|
---|
49 | <modules runAllManagedModulesForAllRequests="true" />
|
---|
50 | </system.webServer>
|
---|
51 | <runtime>
|
---|
52 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
---|
53 | <dependentAssembly>
|
---|
54 | <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
|
---|
55 | <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
---|
56 | </dependentAssembly>
|
---|
57 | <dependentAssembly>
|
---|
58 | <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
---|
59 | <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
|
---|
60 | </dependentAssembly>
|
---|
61 | <dependentAssembly>
|
---|
62 | <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
|
---|
63 | <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
---|
64 | </dependentAssembly>
|
---|
65 | <dependentAssembly>
|
---|
66 | <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
|
---|
67 | <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
|
---|
68 | </dependentAssembly>
|
---|
69 | </assemblyBinding>
|
---|
70 | </runtime>
|
---|
71 | </configuration> |
---|