Last active
November 3, 2021 22:41
-
-
Save Oceanswave/e98106717c41ea578a33f640afc5537d to your computer and use it in GitHub Desktop.
default sitecore webconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<configSections> | |
<section name="sitecore" type="Sitecore.Configuration.RuleBasedConfigReader, Sitecore.Kernel"/> | |
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, Sitecore.Logging"/> | |
<section name="RetryPolicyConfiguration" | |
type="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Configuration.RetryPolicyConfigurationSettings, Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling. | |
Configuration, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" | |
requirePermission="true"/> | |
<section name="configBuilders" | |
type="System.Configuration.ConfigurationBuildersSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" | |
restartOnExternalChanges="false" requirePermission="false"/> | |
</configSections> | |
<configBuilders> | |
<builders> | |
<add name="SitecoreAppSettingsBuilder" mode="Strict" prefix="SITECORE_APPSETTINGS_" stripPrefix="true" | |
type="Sitecore.Configuration.FlexibleEnvironmentConfigBuilder, Sitecore.Kernel"/> | |
<add name="SitecoreConnectionStringsBuilder" mode="Strict" prefix="SITECORE_CONNECTIONSTRINGS_" stripPrefix="true" | |
type="Microsoft.Configuration.ConfigurationBuilders.EnvironmentConfigBuilder, Microsoft.Configuration.ConfigurationBuilders.Environment, Version=1.0.0.0, Culture=neutral"/> | |
</builders> | |
</configBuilders> | |
<RetryPolicyConfiguration defaultRetryStrategy="Fixed Interval Retry Strategy" defaultSqlConnectionRetryStrategy="Incremental Retry Strategy"> | |
<incremental name="Incremental Retry Strategy" retryIncrement="00:00:01" initialInterval="00:00:01" maxRetryCount="10"/> | |
<fixedInterval name="Fixed Interval Retry Strategy" retryInterval="00:00:01" maxRetryCount="10"/> | |
<exponentialBackoff name="Backoff Retry Strategy" minBackoff="00:00:01" maxBackoff="00:00:30" deltaBackoff="00:00:10" maxRetryCount="6" | |
firstFastRetry="false"/> | |
</RetryPolicyConfiguration> | |
<connectionStrings configSource="App_Config\ConnectionStrings.config"/> | |
<appSettings configBuilders="SitecoreAppSettingsBuilder"> | |
<add key="EmailReminder.FromAddress" value="[email protected]"/> | |
<!-- NetSpell directory --> | |
<add key="DictionaryFolder" value="/sitecore/shell/controls/rich text editor/Dictionaries/"/> | |
<add key="Lucene.Net.FSDirectory.class" value="Sitecore.Search.FSDirectory, Sitecore.Kernel"/> | |
<add key="PageInspector:ServerCodeMappingSupport" value="Disabled"/> | |
<!-- Telerik keys --> | |
<add key="Telerik.AsyncUpload.ConfigurationEncryptionKey" value=""/> | |
<add key="Telerik.Upload.ConfigurationHashKey" value=""/> | |
<add key="Telerik.Web.UI.DialogParametersEncryptionKey" value=""/> | |
<!-- Throttle concurrent requests per session specifies how many requests with same Session ID are allowed to be executed simultaneously. --> | |
<add key="aspnet:RequestQueueLimitPerSession" value="25"/> | |
<!-- SUPPORTED SERVER ROLES | |
Specify the roles that you want this server to perform. A server can perform one or more roles. Enter the roles in a comma separated list. The supported roles are: | |
ContentDelivery | |
ContentManagement | |
ContentDelivery, Indexing | |
ContentManagement, Indexing | |
Processing | |
[Obsolete] Reporting | |
Standalone | |
Default value: Standalone | |
--> | |
<add key="role:define" value="ContentManagement, Indexing"/> | |
<!-- SUPPORTED SEARCH PROVIDERS | |
Specify the search provider that you want this server to use. The supported search providers are: | |
Solr | |
Azure | |
Default value: Solr | |
--> | |
<add key="search:define" value="Solr"/> | |
<!-- SUPPORTED MEMBERSHIP CONFIGURATION FOR CONTENT DELIVERY | |
Specify the membership configuration that you want this server to use for Content Delivery role. The supported options are: | |
Sitecore | |
None | |
Default value: Sitecore | |
--> | |
<add key="security:define" value="Sitecore"/> | |
<add key="owin:appStartup" value="Sitecore.Owin.Startup, Sitecore.Owin"/> | |
<add key="messagingTransport:define" value="SQL"/> | |
<add key="marketingDefinitionsAssignment:define" value="Both"/> | |
<add key="eds:define" value="CustomSmtp"/> | |
<add key="exmEnabled:define" value="yes"/> | |
<add key="AllowInvalidClientCertificates" value="false"/> | |
<add key="instanceNameMode:define" value="environment"/> | |
</appSettings> | |
<sitecore configSource="App_Config\Sitecore.config"/> | |
<!-- SYSTEM.WEBSERVER | |
This section is a ASP.NET configuration section when running in Integrated Mode on IIS7. | |
--> | |
<location path="sitecore"> | |
<system.webServer> | |
<httpProtocol> | |
<customHeaders> | |
<remove name="X-Content-Type-Options"/> | |
<remove name="X-XSS-Protection"/> | |
<remove name="Content-Security-Policy"/> | |
<add name="X-XSS-Protection" value="1; mode=block"/> | |
<add name="X-Content-Type-Options" value="nosniff "/> | |
<add name="Content-Security-Policy" | |
value="default-src * 'unsafe-inline' 'unsafe-eval';"/> | |
</customHeaders> | |
</httpProtocol> | |
</system.webServer> | |
</location> | |
<system.webServer> | |
<modules runAllManagedModulesForAllRequests="true"> | |
<add type="Sitecore.DependencyInjection.SitecorePerRequestScopeModule, Sitecore.Kernel" name="SitecorePerRequestScopeModule"/> | |
<add type="Sitecore.SecurityModel.License.LicenseModule, Sitecore.Kernel" name="SitecoreLicenseModule"/> | |
<add type="Sitecore.Web.RewriteModule, Sitecore.Kernel" name="SitecoreRewriteModule"/> | |
<add type="Sitecore.Nexus.Web.HttpModule,Sitecore.Kernel" name="SitecoreHttpModule"/> | |
<add type="Sitecore.Resources.Media.UploadWatcher, Sitecore.Kernel" name="SitecoreUploadWatcher"/> | |
<add type="Sitecore.IO.XslWatcher, Sitecore.Kernel" name="SitecoreXslWatcher"/> | |
<add type="Sitecore.IO.LayoutWatcher, Sitecore.Kernel" name="SitecoreLayoutWatcher"/> | |
<add type="Sitecore.Configuration.ConfigWatcher, Sitecore.Kernel" name="SitecoreConfigWatcher"/> | |
<remove name="Session"/> | |
<add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition=""/> | |
<add type="Sitecore.Web.HttpModule,Sitecore.Kernel" name="SitecoreHttpModuleExtensions"/> | |
<add type="Sitecore.Web.HttpModuleDisabler, Sitecore.Kernel" name="SitecoreHttpModuleDisabler"/> | |
<add type="Sitecore.Web.XFrameOptionsHeaderModule, Sitecore.Kernel" name="SitecoreXFrameOptionsHeaderModule"/> | |
<add name="SitecoreAntiCSRF" type="Sitecore.Security.AntiCsrf.SitecoreAntiCsrfModule, Sitecore.Security.AntiCsrf"/> | |
<remove name="WebDAVModule"/> | |
<add type="Sitecore.Analytics.Media.MediaRequestSessionModule, Sitecore.Analytics" name="MediaRequestSessionModule"/> | |
</modules> | |
<handlers> | |
<add verb="*" path="sitecore_media.ashx" type="Sitecore.Resources.Media.MediaRequestHandler, Sitecore.Kernel" name="Sitecore.MediaRequestHandler"/> | |
<add verb="*" path="sitecore_xaml.ashx" type="Sitecore.Web.UI.XamlSharp.Xaml.XamlPageHandlerFactory, Sitecore.Kernel" | |
name="Sitecore.XamlPageRequestHandler"/> | |
<add verb="*" path="sitecore_icon.ashx" type="Sitecore.Resources.IconRequestHandler, Sitecore.Kernel" name="Sitecore.IconRequestHandler"/> | |
<add verb="*" path="sitecore_temp.ashx" type="Sitecore.Resources.TempRequestHandler, Sitecore.Kernel" name="Sitecore.TempRequestHandler"/> | |
<add verb="*" path="sitecore_handlers.ashx" type="Sitecore.Web.CustomHandlerFactory, Sitecore.Kernel" name="Sitecore.GenericHandler"/> | |
<add verb="*" path="sitecore_device_simulation.ashx" type="Sitecore.Shell.DeviceSimulation.SimulationRequestHandler, Sitecore.Kernel" | |
name="Sitecore.SimulationRequestHandler"/> | |
<add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" | |
type="Telerik.Web.UI.DialogHandler"/> | |
<add name="Telerik_Web_UI_SpellCheckHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.SpellCheckHandler.axd" | |
type="Telerik.Web.UI.SpellCheckHandler"/> | |
<add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource"/> | |
<add name="LoggerHandler" verb="*" path="*.logger" type="JSNLog.LoggerHandler, Sitecore.Logging.Client" resourceType="Unspecified" | |
preCondition="integratedMode"/> | |
<add name="LoggerHandler-Classic" path="*.logger" verb="*" modules="IsapiModule" | |
scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode"/> | |
<add verb="*" path="*.aspx" type="Sitecore.DependencyInjection.AutowiredPageHandlerFactory, Sitecore.Kernel, Version=8.2.0, Culture=neutral" | |
name="AutowiredPageHandlerFactory"/> | |
<add verb="*" name="Sitecore.SpeakJS64" path="*/speak/v1/*/*.js" modules="IsapiModule" | |
scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" | |
preCondition="classicMode,runtimeVersionv4.0,bitness64"/> | |
<add verb="*" name="Sitecore.SpeakJS32" path="*/speak/v1/*/*.js" modules="IsapiModule" | |
scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" | |
preCondition="classicMode,runtimeVersionv4.0,bitness32"/> | |
<add verb="*" name="Sitecore.SpeakClassic64" path="sitecore_speak.ashx" modules="IsapiModule" | |
scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" | |
preCondition="classicMode,runtimeVersionv4.0,bitness64"/> | |
<add verb="*" name="Sitecore.SpeakClassic32" path="sitecore_speak.ashx" modules="IsapiModule" | |
scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" | |
preCondition="classicMode,runtimeVersionv4.0,bitness32"/> | |
<add verb="*" path="sitecore_speak.ashx" type="Sitecore.Resources.Scripts.ScriptHandler, Sitecore.Speak.Client" name="Sitecore.Speak"/> | |
<add verb="*" path="sitecore_expeditor_speak_request.ashx" type="Sitecore.ExperienceEditor.Speak.Server.RequestHandler, Sitecore.ExperienceEditor.Speak" | |
name="Sitecore.ExperienceEditor.Speak"/> | |
<add verb="*" path="sitecore_expeditor_speak_request_async.ashx" | |
type="Sitecore.ExperienceEditor.Speak.Server.RequestAsyncHandler, Sitecore.ExperienceEditor.Speak" | |
name="Sitecore.ExperienceEditor.Speak.Server.RequestAsyncHandler"/> | |
</handlers> | |
<validation validateIntegratedModeConfiguration="false"/> | |
<security> | |
<requestFiltering> | |
<requestLimits maxAllowedContentLength="524288000"/> | |
</requestFiltering> | |
</security> | |
<httpProtocol> | |
<customHeaders> | |
<remove name="X-Powered-By"/> | |
<add name="Content-Security-Policy" value="default-src * 'unsafe-inline' 'unsafe-eval';" /> | |
</customHeaders> | |
</httpProtocol> | |
</system.webServer> | |
<location path="sitecore/shell"> | |
<system.web> | |
<authorization> | |
<deny users="?"/> | |
<allow users="*"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="sitecore/admin"> | |
<system.web> | |
<authorization> | |
<deny users="?"/> | |
<allow users="*"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="App_Config"> | |
<system.web> | |
<authorization> | |
<deny users="?"/> | |
<allow users="*"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="xsl"> | |
<system.web> | |
<authorization> | |
<deny users="?"/> | |
<allow users="*"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="sitecore modules/Shell"> | |
<system.web> | |
<authorization> | |
<deny users="?"/> | |
<allow users="*"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="sitecore modules/debug"> | |
<system.web> | |
<authorization> | |
<deny users="?"/> | |
<allow users="*"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="sitecore/shell/Themes/Standard"> | |
<system.web> | |
<authorization> | |
<allow users="?"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="sitecore/shell/controls/Lib"> | |
<system.web> | |
<authorization> | |
<allow users="?"/> | |
</authorization> | |
</system.web> | |
</location> | |
<location path="sitecore/shell/client/Speak"> | |
<system.web> | |
<authorization> | |
<allow users="?"/> | |
</authorization> | |
</system.web> | |
</location> | |
<system.web> | |
<!-- If requestValidationMode attribute of httRuntime node is set to 2.0, | |
Sitecore requires this setting to be set to "false" for Sitecore client to work and it shouldn't be changed. | |
You can however set ValidateRequest attribute in the @Page directive to "true" for your layout .aspx files. | |
--> | |
<pages validateRequest="false"> | |
<controls> | |
<add tagPrefix="sc" namespace="Sitecore.Web.UI.WebControls" assembly="Sitecore.Kernel"/> | |
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> | |
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" | |
assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> | |
<add tagPrefix="sc" namespace="Sitecore.Web.UI.WebControls" assembly="Sitecore.Analytics"/> | |
</controls> | |
<namespaces> | |
<add namespace="System.Web.Mvc"/> | |
<add namespace="System.Web.Mvc.Ajax"/> | |
<add namespace="System.Web.Mvc.Html"/> | |
<add namespace="System.Web.Routing"/> | |
<add namespace="System.Linq"/> | |
<add namespace="System.Collections.Generic"/> | |
</namespaces> | |
</pages> | |
<membership defaultProvider="sitecore" hashAlgorithmType="SHA1"> | |
<providers> | |
<clear/> | |
<add name="sitecore" type="Sitecore.Security.SitecoreMembershipProvider, Sitecore.Kernel" realProviderName="sql" providerWildcard="%" | |
raiseEvents="true"/> | |
<add name="sql" type="System.Web.Security.SqlMembershipProvider" connectionStringName="security" applicationName="sitecore" | |
minRequiredPasswordLength="1" minRequiredNonalphanumericCharacters="0" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" | |
maxInvalidPasswordAttempts="5"/> | |
<add name="disabled" type="Sitecore.Security.DisabledMembersipProvider, Sitecore.Kernel" applicationName="sitecore"/> | |
<add name="switcher" type="Sitecore.Security.SwitchingMembershipProvider, Sitecore.Kernel" applicationName="sitecore" | |
mappings="switchingProviders/membership"/> | |
</providers> | |
</membership> | |
<roleManager defaultProvider="sitecore" enabled="true"> | |
<providers> | |
<clear/> | |
<add name="sitecore" type="Sitecore.Security.SitecoreRoleProvider, Sitecore.Kernel" realProviderName="sql" raiseEvents="true"/> | |
<add name="sql" type="System.Web.Security.SqlRoleProvider" connectionStringName="security" applicationName="sitecore"/> | |
<add name="disabled" type="Sitecore.Security.DisabledRoleProvider, Sitecore.Kernel" applicationName="sitecore"/> | |
<add name="switcher" type="Sitecore.Security.SwitchingRoleProvider, Sitecore.Kernel" applicationName="sitecore" | |
mappings="switchingProviders/roleManager"/> | |
</providers> | |
</roleManager> | |
<profile defaultProvider="sql" enabled="true" inherits="Sitecore.Security.UserProfile, Sitecore.Kernel"> | |
<providers> | |
<clear/> | |
<add name="sql" type="System.Web.Profile.SqlProfileProvider" connectionStringName="security" applicationName="sitecore"/> | |
<add name="disabled" type="Sitecore.Security.DisabledProfileProvider, Sitecore.Kernel" applicationName="sitecore"/> | |
<add name="switcher" type="Sitecore.Security.SwitchingProfileProvider, Sitecore.Kernel" applicationName="sitecore" | |
mappings="switchingProviders/profile"/> | |
</providers> | |
<properties> | |
<clear/> | |
<add type="System.String" name="SC_UserData"/> | |
</properties> | |
</profile> | |
<!-- DYNAMIC DEBUG COMPILATION | |
Set compilation debug="true" to enable ASPX debugging. Otherwise, setting this value to | |
false will improve runtime performance of this application. | |
Set compilation debug="true" to insert debugging symbols (.pdb information) | |
into the compiled page. Because this creates a larger file that executes | |
more slowly, you should set this value to true only when debugging and to | |
false at all other times. For more information, refer to the documentation about | |
debugging ASP .NET files. | |
--> | |
<compilation defaultLanguage="c#" debug="false" targetFramework="4.8"> | |
<assemblies> | |
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> | |
<add assembly="System.Web.Helpers, Version=3.0.0.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Web.Mvc, Version=5.2.4.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Web.WebPages, Version=3.0.0.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Web.Http, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Web.Http.WebHost, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Net.Http.Formatting, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="netstandard, Version=2.0.0.0, Culture=neutral,PublicKeyToken=cc7b13ffcd2ddd51"/> | |
<add assembly="System.Web.Http.Cors, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35"/> | |
<add assembly="System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> | |
</assemblies> | |
</compilation> | |
<!-- CUSTOM ERROR MESSAGES | |
Set customError mode values to control the display of user-friendly | |
error messages to users instead of error details (including a stack trace): | |
"On" Always display custom (friendly) messages | |
"Off" Always display detailed ASP.NET error information. | |
"RemoteOnly" Display custom (friendly) messages only to users not running | |
on the local Web server. This setting is recommended for security purposes, so | |
that you do not display application detail information to remote clients. | |
--> | |
<customErrors mode="RemoteOnly"/> | |
<!-- AUTHENTICATION | |
This section sets the authentication policies of the application. Possible modes are "Windows", "Forms", | |
"Passport" and "None" | |
--> | |
<authentication mode="None"> | |
</authentication> | |
<!-- IDENTITY | |
If this setting is true, aspnet will run in the security context of the IIS authenticated | |
user (ex. IUSR_xxx). | |
If false, aspnet will run in the security context of the default ASPNET user. | |
--> | |
<identity impersonate="false"/> | |
<!-- APPLICATION-LEVEL TRACE LOGGING | |
Application-level tracing enables trace log output for every page within an application. | |
Set trace enabled="true" to enable application trace logging. If pageOutput="true", the | |
trace information will be displayed at the bottom of each page. Otherwise, you can view the | |
application trace log by browsing the "trace.axd" page from your web application | |
root. | |
--> | |
<trace enabled="false" requestLimit="50" pageOutput="false" traceMode="SortByTime" localOnly="true"/> | |
<sessionState mode="InProc" cookieless="false" cookieSameSite="None" timeout="20" | |
sessionIDManagerType="Sitecore.SessionManagement.ConditionalSessionIdManager, Sitecore.Kernel"> | |
<providers> | |
<add name="mssql" type="Sitecore.SessionProvider.Sql.SqlSessionStateProvider, Sitecore.SessionProvider.Sql" sessionType="Standard" | |
connectionStringName="session" pollingEnabled="true" pollingInterval="2" pollingMaxExpiredSessionsPerSecond="0" pollingMaxInstances="1" | |
compression="true"/> | |
<add name="redis" type="Sitecore.SessionProvider.Redis.RedisSessionStateProvider, Sitecore.SessionProvider.Redis" applicationName="Application" | |
connectionString="session" pollingEnabled="true" pollingInterval="2" pollingMaxExpiredSessionsPerSecond="0" pollingMaxInstances="1" | |
compression="true"/> | |
</providers> | |
</sessionState> | |
<!-- GLOBALIZATION | |
This section sets the globalization settings of the application. | |
--> | |
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/> | |
<!-- | |
httpRuntime Attributes: | |
executionTimeout="[seconds]" - time in seconds before request is automatically timed out | |
maxRequestLength="[KBytes]" - KBytes size of maximum request length to accept | |
useFullyQualifiedRedirectUrl="[true|false]" - Fully qualifiy the URL for client redirects | |
minFreeThreads="[count]" - minimum number of free thread to allow execution of new requests | |
minLocalRequestFreeThreads="[count]" - minimum number of free thread to allow execution of new local requests | |
appRequestQueueLimit="[count]" - maximum number of requests queued for the application | |
If you change the maxRequestLength setting, you should also change the Media.MaxSizeInDatabase setting. | |
Media.MaxSizeInDatabase should always be less than maxRequestLength. | |
--> | |
<httpRuntime targetFramework="4.8" maxRequestLength="512000" executionTimeout="600" enableKernelOutputCache="false" relaxedUrlToFileSystemMapping="false" | |
requestValidationMode="4.0" enableVersionHeader="false" | |
requestValidationType="Sitecore.Web.RequestValidators.SitecoreBackendRequestValidator, Sitecore.Kernel"/> | |
<httpCookies sameSite="None" requireSSL="true"/> | |
</system.web> | |
<runtime> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<dependentAssembly> | |
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.4.1.9004" newVersion="3.4.1.9004"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="ChilkatDotNet47" publicKeyToken="eb5fc1fc52ef09bd"/> | |
<bindingRedirect oldVersion="0.0.0.0-9.5.0.73" newVersion="9.5.0.73"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="CommonServiceLocator" publicKeyToken="489b6accfaf20ef0"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.3.0" newVersion="2.0.3.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="ComponentArt.Web.UI" publicKeyToken="9bc9f846553156bb"/> | |
<bindingRedirect oldVersion="0.0.0.0-2010.1.2637.35" newVersion="2010.1.2637.35"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="DocumentFormat.OpenXml" publicKeyToken="8fb06cb64d019a17"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.7.2.0" newVersion="2.7.2.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="FiftyOne.Foundation" publicKeyToken="e0b3a8da0bbce49c"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.2.17.2" newVersion="3.2.17.2"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="HtmlAgilityPack" publicKeyToken="bd319b19eaf3b43a"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.4.9.5" newVersion="1.4.9.5"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.3.0.8" newVersion="1.3.0.8"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="MarkdownSharp" publicKeyToken="eb89951a0d41ab86"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.14.5.0" newVersion="1.14.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNet.Identity.Core" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNet.Identity.Owin" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNet.OData" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-7.0.0.20629" newVersion="7.0.0.20629"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNet.SessionState.SessionStateModule" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNetCore.Hosting.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNetCore.Hosting.Server.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNetCore.Http.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.AspNetCore.Http.Features" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Azure.Amqp" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.4.0.0" newVersion="2.4.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Azure.ServiceBus" publicKeyToken="7e34167dcc6d6d8c"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Azure.Services.AppAuthentication" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.3.0" newVersion="1.0.3.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Configuration.ConfigurationBuilders.Base" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Configuration.ConfigurationBuilders.Environment" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Caching.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Caching.Memory" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.Binder" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.CommandLine" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.EnvironmentVariables" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.FileExtensions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.Ini" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.Json" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Configuration.Xml" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.DependencyModel" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.FileProviders.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.FileProviders.Physical" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.FileSystemGlobbing" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Hosting.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Logging.Abstractions" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Logging" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Options" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.1.5.0" newVersion="3.1.5.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Clients.ActiveDirectory" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.19.3.10102" newVersion="3.19.3.10102"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.19.3.10102" newVersion="3.19.3.10102"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.JsonWebTokens" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.4.0.0" newVersion="5.4.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Logging" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.4.0.0" newVersion="5.4.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Protocols" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Protocols.OpenIdConnect" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Protocols.WsFederation" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Tokens" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.4.0.0" newVersion="5.4.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Tokens.Saml" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.IdentityModel.Xml" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.OData.Core" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-7.5.0.20627" newVersion="7.5.0.20627"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.OData.Edm" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-7.5.0.20627" newVersion="7.5.0.20627"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Host.SystemWeb" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Security.ActiveDirectory" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Security.Jwt" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Security.OpenIdConnect" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.Common" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Caching" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Configuration" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Data" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ServiceBus" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.WindowsAzure.Storage" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Spatial" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-7.5.0.20627" newVersion="7.5.0.20627"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Mvp.Xml" publicKeyToken="6ead800d778c9b9f"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.3.0.0" newVersion="2.3.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"/> | |
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Owin" publicKeyToken="f0ebd12fd5e55cc5"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="PdfSharp.Charting" publicKeyToken="f94615aa0424f9eb"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.50.4740.0" newVersion="1.50.4740.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="PdfSharp" publicKeyToken="f94615aa0424f9eb"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.50.4740.0" newVersion="1.50.4740.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Pipelines.Sockets.Unofficial" publicKeyToken="42ea0a778e13fbe2"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Polly" publicKeyToken="c8a3ffc3f8f825cc"/> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="protobuf-net" publicKeyToken="257b51d87d2e4d67"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.668" newVersion="2.0.0.668"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="RazorGenerator.Mvc" publicKeyToken="7b26dc2a43f6a0d4"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Remotion.Linq" publicKeyToken="fee00910d6e5f53b"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Sitecore.Nexus.Consumption" publicKeyToken="9de34fe2109de40c"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Sitecore.Nexus.Licensing" publicKeyToken="9de34fe2109de40c"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="StackExchange.Redis" publicKeyToken="c219ff1ca8c2ce46"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.ComponentModel.Annotations" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.2.1.0" newVersion="4.2.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Configuration.ConfigurationManager" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Data.SqlClient" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.6.1.1" newVersion="4.6.1.1"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Diagnostics.PerformanceCounter" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.4.0.0" newVersion="5.4.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Interactive.Async" publicKeyToken="94bc3704cddfc263"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Interactive.Async.Providers" publicKeyToken="94bc3704cddfc263"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.IO.FileSystem.Primitives" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.IO.Packaging" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.IO.Pipelines" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.2.1" newVersion="4.0.2.1"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Linq.Async" publicKeyToken="94bc3704cddfc263"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Linq.Async.Queryable" publicKeyToken="94bc3704cddfc263"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Net.WebSockets.Client" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.1" newVersion="4.0.0.1"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Net.WebSockets" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.4.0" newVersion="4.1.4.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Security.AccessControl" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Security.Cryptography.Encoding" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Security.Cryptography.Primitives" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Security.Cryptography.X509Certificates" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Security.Cryptography.Xml" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Security.Permissions" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Security.Principal.Windows" publicKeyToken="b03f5f7f11d50a3a"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Text.Encodings.Web" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.5.1" newVersion="4.0.5.1"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Text.Json" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Threading.Channels" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51"/> | |
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Cors" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Http.Cors" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Http.WebHost" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Razor" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.WebPages.Deployment" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.WebPages.Razor" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Telerik.Web.Design" publicKeyToken="121fae78165ba3d4"/> | |
<bindingRedirect oldVersion="0.0.0.0-2020.3.1021.45" newVersion="2020.3.1021.45"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Telerik.Web.Device.Detection" publicKeyToken="121fae78165ba3d4"/> | |
<bindingRedirect oldVersion="0.0.0.0-2020.3.1021.45" newVersion="2020.3.1021.45"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4"/> | |
<bindingRedirect oldVersion="0.0.0.0-2020.3.1021.45" newVersion="2020.3.1021.45"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Telerik.Web.UI.Skins" publicKeyToken="121fae78165ba3d4"/> | |
<bindingRedirect oldVersion="0.0.0.0-2020.3.1021.45" newVersion="2020.3.1021.45"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="WebActivatorEx" publicKeyToken="7b26dc2a43f6a0d4"/> | |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/> | |
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234"/> | |
</dependentAssembly> | |
</assemblyBinding> | |
</runtime> | |
<system.serviceModel> | |
<bindings> | |
<basicHttpBinding> | |
<binding name="SitecoreApplicationCenter" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:20:00" sendTimeout="00:05:00" | |
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" | |
maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"> | |
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/> | |
</binding> | |
</basicHttpBinding> | |
</bindings> | |
</system.serviceModel> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment