Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Services.WebApp/3.3/Web.config @ 16091

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

#2839: worked on hive project management

  • updated app/web configs and settings
File size: 4.7 KB
RevLine 
[15547]1<?xml version="1.0" encoding="utf-8"?>
[12428]2<configuration>
3  <connectionStrings>
[15547]4    <remove name="HeuristicLab.Authentication" />
5    <remove name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" />
[16091]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" />
[12428]8  </connectionStrings>
[15547]9 
[12428]10  <appSettings>
[15547]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" />
[12428]15  </appSettings>
[15547]16 
[12428]17  <system.web>
18    <authentication mode="Forms">
[15547]19      <forms loginUrl="~/App/Empty" timeout="2880" cookieless="UseCookies" name=".HEURISTICLABWEBAPP" />
[12428]20    </authentication>
[15547]21    <compilation debug="false" targetFramework="4.5" />
22    <httpRuntime targetFramework="4.5" />
[14748]23    <membership defaultProvider="AspNetSqlMembershipProvider">
[12428]24      <providers>
[15547]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" />
[12428]29      </providers>
30    </membership>
[14748]31    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
[12428]32      <providers>
[15547]33        <clear />
34        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
[12428]35      </providers>
36    </roleManager>
37  </system.web>
[15547]38
[12428]39  <system.webServer>
40    <modules>
[15547]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" />
[12428]49    </modules>
[14748]50    <handlers>
[15547]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" />
[14748]55    </handlers>
56  </system.webServer>
[15547]57
[12428]58  <runtime>
59    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
60      <dependentAssembly>
[15547]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" />
[12428]63      </dependentAssembly>
64      <dependentAssembly>
[15547]65        <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
66        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
[12428]67      </dependentAssembly>
68      <dependentAssembly>
[15547]69        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
70        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
[12428]71      </dependentAssembly>
72      <dependentAssembly>
[15547]73        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
74        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
[12428]75      </dependentAssembly>
76      <dependentAssembly>
[15547]77        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
78        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
[12428]79      </dependentAssembly>
80      <dependentAssembly>
[15547]81        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
82        <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
[12428]83      </dependentAssembly>
[12546]84      <dependentAssembly>
[15547]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" />
[12546]87      </dependentAssembly>
[12428]88    </assemblyBinding>
89  </runtime>
[15547]90</configuration>
Note: See TracBrowser for help on using the repository browser.