Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Services.WebApp/3.3/Web.config @ 16430

Last change on this file since 16430 was 16117, checked in by jkarder, 6 years ago

#2839: merged [15377-16116/branches/2839_HiveProjectManagement] into trunk

File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3  <connectionStrings>
4    <remove name="HeuristicLab.Authentication" />
5    <remove name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" />
6    <add name="HeuristicLab.Authentication" connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
7    <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Hive-3.4" />
8  </connectionStrings>
9 
10  <appSettings>
11    <add key="webpages:Version" value="3.0.0.0" />
12    <add key="webpages:Enabled" value="false" />
13    <add key="ClientValidationEnabled" value="true" />
14    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
15  </appSettings>
16 
17  <system.web>
18    <authentication mode="Forms">
19      <forms loginUrl="~/App/Empty" timeout="2880" cookieless="UseCookies" name=".HEURISTICLABWEBAPP" />
20    </authentication>
21    <compilation debug="false" targetFramework="4.5" />
22    <httpRuntime targetFramework="4.5" />
23    <membership defaultProvider="AspNetSqlMembershipProvider">
24      <providers>
25        <clear />
26        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication"
27             requiresQuestionAndAnswer="false" requiresUniqueEmail="false" applicationName="HeuristicLab.Authentication" minRequiredPasswordLength="8"
28             minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="5" />
29      </providers>
30    </membership>
31    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
32      <providers>
33        <clear />
34        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
35      </providers>
36    </roleManager>
37  </system.web>
38
39  <system.webServer>
40    <modules>
41      <remove name="FormsAuthentication" />
42      <remove name="DefaultAuthentication" />
43      <remove name="RoleManager" />
44      <remove name="UrlAuthorization" />
45      <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" />
46      <add name="DefaultAuthentication" type="System.Web.Security.DefaultAuthenticationModule" />
47      <add name="RoleManager" type="System.Web.Security.RoleManagerModule" />
48      <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" />
49    </modules>
50    <handlers>
51      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
52      <remove name="OPTIONSVerbHandler" />
53      <remove name="TRACEVerbHandler" />
54      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
55    </handlers>
56  </system.webServer>
57
58  <runtime>
59    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
60      <dependentAssembly>
61        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
62        <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
63      </dependentAssembly>
64      <dependentAssembly>
65        <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
66        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
67      </dependentAssembly>
68      <dependentAssembly>
69        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
70        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
71      </dependentAssembly>
72      <dependentAssembly>
73        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
74        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
75      </dependentAssembly>
76      <dependentAssembly>
77        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
78        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
79      </dependentAssembly>
80      <dependentAssembly>
81        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
82        <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
83      </dependentAssembly>
84      <dependentAssembly>
85        <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" />
86        <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
87      </dependentAssembly>
88    </assemblyBinding>
89  </runtime>
90</configuration>
Note: See TracBrowser for help on using the repository browser.