Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveProjectManagement/HeuristicLab.Services.WebApp/3.3/Web.config @ 15546

Last change on this file since 15546 was 15546, checked in by jzenisek, 6 years ago

#2839 worked on ProjectResource assignment: (cascading) assigning & unassigning

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