Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.Deployment/3.3/app.config @ 14748

Last change on this file since 14748 was 14748, checked in by jkarder, 7 years ago

#2743: cleaned up

  • updated app configs
  • updated settings
File size: 4.0 KB
RevLine 
[3179]1<?xml version="1.0" encoding="utf-8"?>
[2742]2<configuration>
3  <connectionStrings>
[14748]4    <add name="HeuristicLab.Authentication" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
[11623]5    <add name="HeuristicLab.Services.Deployment.DataAccess.Properties.Settings.HeuristicLab_DeploymentConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Deployment"/>
[2742]6  </connectionStrings>
[4494]7
[3179]8  <system.webServer>
9    <security>
10      <requestFiltering>
11        <requestLimits maxAllowedContentLength="100000000"/>
12      </requestFiltering>
13    </security>
14  </system.webServer>
[4494]15
[2742]16  <system.web>
[14748]17    <compilation debug="true" />
[11623]18    <httpRuntime maxRequestLength="2097151"/>
[4273]19    <membership defaultProvider="AspNetSqlMembershipProvider">
[3006]20      <providers>
[14748]21        <clear />
22        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication"
23             requiresQuestionAndAnswer="false" passwordFormat="Hashed" applicationName="HeuristicLab.Authentication" minRequiredPasswordLength="8"
24             minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="5" />
[3006]25      </providers>
26    </membership>
[4273]27    <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
[3006]28      <providers>
[14748]29        <clear />
30        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
[3006]31      </providers>
32    </roleManager>
[2742]33  </system.web>
[4494]34
[2742]35  <system.serviceModel>
[4494]36    <services>
[14748]37      <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.Deployment.AdminService">
38        <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding"
39          contract="HeuristicLab.Services.Deployment.IAdminService"/>
[4494]40        <host>
41          <baseAddresses>
[14748]42            <add baseAddress="http://localhost:8000/Deployment-3.3/AdminService.svc"/>
[4494]43          </baseAddresses>
44        </host>
45      </service>
[14748]46      <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.Deployment.UpdateService">
47        <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding"
48          contract="HeuristicLab.Services.Deployment.IUpdateService"/>
[4494]49        <host>
50          <baseAddresses>
[14748]51            <add baseAddress="http://localhost:8000/Deployment-3.3/UpdateService.svc"/>
[4494]52          </baseAddresses>
53        </host>
54      </service>
55    </services>
[14748]56    <behaviors>
57      <serviceBehaviors>
58        <behavior name="DefaultServiceBehavior">
59          <serviceMetadata httpGetEnabled="true" />
60          <serviceDebug includeExceptionDetailInFaults="true" />
61          <serviceCredentials>
62            <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" />
63            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider"
64              membershipProviderName="AspNetSqlMembershipProvider" />
65          </serviceCredentials>
66          <serviceAuthorization principalPermissionMode="UseAspNetRoles"
67            roleProviderName="AspNetSqlRoleProvider" />
68        </behavior>
69      </serviceBehaviors>
70    </behaviors>
71    <bindings>
72      <wsHttpBinding>
73        <binding name="DefaultWsHttpBinding" maxBufferPoolSize="2147483647"
74          maxReceivedMessageSize="2147483647">
75          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
76            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
77          <security>
78            <message clientCredentialType="UserName" />
79          </security>
80        </binding>
81      </wsHttpBinding>
82    </bindings>
[2742]83  </system.serviceModel>
[14748]84
85  <startup>
86    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
87  </startup>
88</configuration>
Note: See TracBrowser for help on using the repository browser.