Advertisement
Guest User

Untitled

a guest
Apr 17th, 2022
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.28 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <section name="sitecore" type="Sitecore.Configuration.RuleBasedConfigReader, Sitecore.Kernel" />
  5. <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, Sitecore.Logging" />
  6. <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" />
  7. <section name="configBuilders" type="System.Configuration.ConfigurationBuildersSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" restartOnExternalChanges="false" requirePermission="false" />
  8. </configSections>
  9. <configBuilders>
  10. <builders>
  11. <add name="SitecoreAppSettingsBuilder" mode="Strict" prefix="SITECORE_APPSETTINGS_" stripPrefix="true" type="Microsoft.Configuration.ConfigurationBuilders.EnvironmentConfigBuilder, Microsoft.Configuration.ConfigurationBuilders.Environment, Version=1.0.0.0, Culture=neutral" />
  12. <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>
  13. </configBuilders>
  14. <RetryPolicyConfiguration defaultRetryStrategy="Fixed Interval Retry Strategy" defaultSqlConnectionRetryStrategy="Incremental Retry Strategy">
  15. <incremental name="Incremental Retry Strategy" retryIncrement="00:00:01" initialInterval="00:00:01" maxRetryCount="10" />
  16. <fixedInterval name="Fixed Interval Retry Strategy" retryInterval="00:00:01" maxRetryCount="10" />
  17. <exponentialBackoff name="Backoff Retry Strategy" minBackoff="00:00:01" maxBackoff="00:00:30" deltaBackoff="00:00:10" maxRetryCount="6" firstFastRetry="false" />
  18. </RetryPolicyConfiguration>
  19. <connectionStrings configSource="App_Config\ConnectionStrings.config" />
  20. <appSettings configBuilders="SitecoreAppSettingsBuilder">
  21. <add key="EmailReminder.FromAddress" value="name@server.net" />
  22. <!-- NetSpell directory -->
  23. <add key="DictionaryFolder" value="/sitecore/shell/controls/rich text editor/Dictionaries/" />
  24. <add key="Lucene.Net.FSDirectory.class" value="Sitecore.Search.FSDirectory, Sitecore.Kernel" />
  25. <add key="PageInspector:ServerCodeMappingSupport" value="Disabled" />
  26. <!-- Telerik keys -->
  27. <add key="Telerik.AsyncUpload.ConfigurationEncryptionKey" value="YOUR_ENCRYPTION_KEY_TO_GO_HERE" />
  28. <add key="Telerik.Upload.ConfigurationHashKey" value="YOUR_ENCRYPTION_KEY_TO_GO_HERE" />
  29. <add key="Telerik.Web.UI.DialogParametersEncryptionKey" value="YOUR_ENCRYPTION_KEY_TO_GO_HERE" />
  30. <!-- Throttle concurrent requests per session specifies how many requests with same Session ID are allowed to be executed simultaneously. -->
  31. <add key="aspnet:RequestQueueLimitPerSession" value="25" />
  32. <!-- SUPPORTED SERVER ROLES
  33. 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:
  34.  
  35. ContentDelivery
  36. ContentManagement
  37. ContentDelivery, Indexing
  38. ContentManagement, Indexing
  39. Processing
  40. Reporting
  41. Standalone
  42.  
  43. Default value: Standalone
  44. -->
  45. <add key="role:define" value="ContentManagement, Indexing" />
  46. <!-- SUPPORTED SEARCH PROVIDERS
  47. Specify the search provider that you want this server to use. The supported search providers are:
  48.  
  49. Solr
  50. Azure
  51.  
  52. Default value: Solr
  53. -->
  54. <add key="search:define" value="Solr" />
  55. <!-- SUPPORTED MEMBERSHIP CONFIGURATION FOR CONTENT DELIVERY
  56. Specify the membership configuration that you want this server to use for Content Delivery role. The supported options are:
  57.  
  58. Sitecore
  59. None
  60.  
  61. Default value: Sitecore
  62. -->
  63. <add key="security:define" value="Sitecore" />
  64. <add key="owin:appStartup" value="Sitecore.Owin.Startup, Sitecore.Owin" />
  65. <add key="messagingTransport:define" value="SQL" />
  66. <add key="eds:define" value="CustomSmtp" />
  67. <add key="exmEnabled:define" value="yes" />
  68. <add key="AllowInvalidClientCertificates" value="false" />
  69. <add key="env:define" value="develop" />
  70. </appSettings>
  71. <sitecore configSource="App_Config\Sitecore.config" />
  72. <!-- SYSTEM.WEBSERVER
  73. This section is a ASP.NET configuration section when running in Integrated Mode on IIS7.
  74. -->
  75. <location path="sitecore">
  76. <system.webServer>
  77. <httpProtocol>
  78. <customHeaders>
  79. <remove name="X-Content-Type-Options" />
  80. <remove name="X-XSS-Protection" />
  81. <remove name="Content-Security-Policy" />
  82. <add name="X-XSS-Protection" value="1; mode=block" />
  83. <add name="X-Content-Type-Options" value="nosniff " />
  84. <add name="Content-Security-Policy" value="default-src 'self' 'unsafe-inline' 'unsafe-eval' https://apps.sitecore.net https://www.hhogdev.com; img-src 'self' data:; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' 'unsafe-inline' https://fonts.gstatic.com; upgrade-insecure-requests; block-all-mixed-content;" />
  85. </customHeaders>
  86. </httpProtocol>
  87. </system.webServer>
  88. </location>
  89. <system.webServer>
  90. <modules runAllManagedModulesForAllRequests="true">
  91. <add type="Sitecore.DependencyInjection.SitecorePerRequestScopeModule, Sitecore.Kernel" name="SitecorePerRequestScopeModule" />
  92. <add type="Sitecore.SecurityModel.License.LicenseModule, Sitecore.Kernel" name="SitecoreLicenseModule" />
  93. <add type="Sitecore.Web.RewriteModule, Sitecore.Kernel" name="SitecoreRewriteModule" />
  94. <add type="Sitecore.Nexus.Web.HttpModule,Sitecore.Nexus" name="SitecoreHttpModule" />
  95. <add type="Sitecore.Resources.Media.UploadWatcher, Sitecore.Kernel" name="SitecoreUploadWatcher" />
  96. <add type="Sitecore.IO.XslWatcher, Sitecore.Kernel" name="SitecoreXslWatcher" />
  97. <add type="Sitecore.IO.LayoutWatcher, Sitecore.Kernel" name="SitecoreLayoutWatcher" />
  98. <add type="Sitecore.Configuration.ConfigWatcher, Sitecore.Kernel" name="SitecoreConfigWatcher" />
  99. <remove name="Session" />
  100. <add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition="" />
  101. <add type="Sitecore.Web.HttpModule,Sitecore.Kernel" name="SitecoreHttpModuleExtensions" />
  102. <add type="Sitecore.Web.HttpModuleDisabler, Sitecore.Kernel" name="SitecoreHttpModuleDisabler" />
  103. <add type="Sitecore.Web.XFrameOptionsHeaderModule, Sitecore.Kernel" name="SitecoreXFrameOptionsHeaderModule" />
  104. <add name="SitecoreAntiCSRF" type="Sitecore.Security.AntiCsrf.SitecoreAntiCsrfModule, Sitecore.Security.AntiCsrf" />
  105. <add type="Sitecore.Analytics.RobotDetection.Media.MediaRequestSessionModule, Sitecore.Analytics.RobotDetection" name="MediaRequestSessionModule" />
  106. <remove name="WebDAVModule" />
  107. </modules>
  108. <handlers>
  109. <add verb="*" path="sitecore_media_thumb.ashx" type="IR.Feature.SitecoreCustomization.MediaLibrary.PdfThumbnailRequestHandler, IR.Feature.SitecoreCustomization" name="SitecoreTactics.PDFThumbnailRequestHandler" />
  110. <add verb="*" path="sitecore_media.ashx" type="Sitecore.Resources.Media.MediaRequestHandler, Sitecore.Kernel" name="Sitecore.MediaRequestHandler" />
  111. <add verb="*" path="sitecore_xaml.ashx" type="Sitecore.Web.UI.XamlSharp.Xaml.XamlPageHandlerFactory, Sitecore.Kernel" name="Sitecore.XamlPageRequestHandler" />
  112. <add verb="*" path="sitecore_icon.ashx" type="Sitecore.Resources.IconRequestHandler, Sitecore.Kernel" name="Sitecore.IconRequestHandler" />
  113. <add verb="*" path="sitecore_temp.ashx" type="Sitecore.Resources.TempRequestHandler, Sitecore.Kernel" name="Sitecore.TempRequestHandler" />
  114. <add verb="*" path="sitecore_feed.ashx" type="Sitecore.Shell.Feeds.FeedRequestHandler, Sitecore.Kernel" name="Sitecore.FeedRequestHandler" />
  115. <add verb="*" path="sitecore_handlers.ashx" type="Sitecore.Web.CustomHandlerFactory, Sitecore.Kernel" name="Sitecore.GenericHandler" />
  116. <add verb="*" path="sitecore_device_simulation.ashx" type="Sitecore.Shell.DeviceSimulation.SimulationRequestHandler, Sitecore.Kernel" name="Sitecore.SimulationRequestHandler" />
  117. <add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" />
  118. <add name="Telerik_Web_UI_SpellCheckHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" />
  119. <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
  120. <add name="LoggerHandler" verb="*" path="*.logger" type="JSNLog.LoggerHandler, Sitecore.Logging.Client" resourceType="Unspecified" preCondition="integratedMode" />
  121. <add name="LoggerHandler-Classic" path="*.logger" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode" />
  122. <add verb="*" path="*.aspx" type="Sitecore.DependencyInjection.AutowiredPageHandlerFactory, Sitecore.Kernel, Version=8.2.0, Culture=neutral" name="AutowiredPageHandlerFactory" />
  123. <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" />
  124. <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" />
  125. <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" />
  126. <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" />
  127. <add verb="*" path="sitecore_speak.ashx" type="Sitecore.Resources.Scripts.ScriptHandler, Sitecore.Speak.Client" name="Sitecore.Speak" />
  128. <add verb="*" path="sitecore_expeditor_speak_request.ashx" type="Sitecore.ExperienceEditor.Speak.Server.RequestHandler, Sitecore.ExperienceEditor.Speak" name="Sitecore.ExperienceEditor.Speak" />
  129. <add verb="*" path="sitecore_expeditor_speak_request_async.ashx" type="Sitecore.ExperienceEditor.Speak.Server.RequestAsyncHandler, Sitecore.ExperienceEditor.Speak" name="Sitecore.ExperienceEditor.Speak.Server.RequestAsyncHandler" />
  130. <remove name="ExtensionlessUrlHandler-Integrated-4.0" /><remove name="OPTIONSVerbHandler" /><remove name="TRACEVerbHandler" /><add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /></handlers>
  131. <validation validateIntegratedModeConfiguration="false" />
  132. <security>
  133. <requestFiltering>
  134. <requestLimits maxAllowedContentLength="524288000" />
  135. </requestFiltering>
  136. </security>
  137. <httpProtocol>
  138. <customHeaders>
  139. <remove name="X-Powered-By" />
  140. </customHeaders>
  141. </httpProtocol>
  142. </system.webServer>
  143. <system.web>
  144. <!-- If requestValidationMode attribute of httRuntime node is set to 2.0,
  145. Sitecore requires this setting to be set to "false" for Sitecore client to work and it shouldn't be changed.
  146. You can however set ValidateRequest attribute in the @Page directive to "true" for your layout .aspx files.
  147. -->
  148. <pages validateRequest="false">
  149. <controls>
  150. <add tagPrefix="sc" namespace="Sitecore.Web.UI.WebControls" assembly="Sitecore.Kernel" />
  151. <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  152. <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  153. <add tagPrefix="sc" namespace="Sitecore.Web.UI.WebControls" assembly="Sitecore.Analytics" />
  154. </controls>
  155. <namespaces>
  156. <add namespace="System.Web.Mvc" />
  157. <add namespace="System.Web.Mvc.Ajax" />
  158. <add namespace="System.Web.Mvc.Html" />
  159. <add namespace="System.Web.Routing" />
  160. <add namespace="System.Linq" />
  161. <add namespace="System.Collections.Generic" />
  162. </namespaces>
  163. </pages>
  164. <membership defaultProvider="sitecore" hashAlgorithmType="SHA1">
  165. <providers>
  166. <clear />
  167. <add name="sitecore" type="Sitecore.Security.SitecoreMembershipProvider, Sitecore.Kernel" realProviderName="sql" providerWildcard="%" raiseEvents="true" />
  168. <add name="sql" type="System.Web.Security.SqlMembershipProvider" connectionStringName="security" applicationName="sitecore" minRequiredPasswordLength="1" minRequiredNonalphanumericCharacters="0" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" />
  169. <add name="disabled" type="Sitecore.Security.DisabledMembersipProvider, Sitecore.Kernel" applicationName="sitecore" />
  170. <add name="switcher" type="Sitecore.Security.SwitchingMembershipProvider, Sitecore.Kernel" applicationName="sitecore" mappings="switchingProviders/membership" />
  171. </providers>
  172. </membership>
  173. <roleManager defaultProvider="sitecore" enabled="true">
  174. <providers>
  175. <clear />
  176. <add name="sitecore" type="Sitecore.Security.SitecoreRoleProvider, Sitecore.Kernel" realProviderName="sql" raiseEvents="true" />
  177. <add name="sql" type="System.Web.Security.SqlRoleProvider" connectionStringName="security" applicationName="sitecore" />
  178. <add name="disabled" type="Sitecore.Security.DisabledRoleProvider, Sitecore.Kernel" applicationName="sitecore" />
  179. <add name="switcher" type="Sitecore.Security.SwitchingRoleProvider, Sitecore.Kernel" applicationName="sitecore" mappings="switchingProviders/roleManager" />
  180. </providers>
  181. </roleManager>
  182. <profile defaultProvider="sql" enabled="true" inherits="Sitecore.Security.UserProfile, Sitecore.Kernel">
  183. <providers>
  184. <clear />
  185. <add name="sql" type="System.Web.Profile.SqlProfileProvider" connectionStringName="security" applicationName="sitecore" />
  186. <add name="disabled" type="Sitecore.Security.DisabledProfileProvider, Sitecore.Kernel" applicationName="sitecore" />
  187. <add name="switcher" type="Sitecore.Security.SwitchingProfileProvider, Sitecore.Kernel" applicationName="sitecore" mappings="switchingProviders/profile" />
  188. </providers>
  189. <properties>
  190. <clear />
  191. <add type="System.String" name="SC_UserData" />
  192. </properties>
  193. </profile>
  194. <!-- DYNAMIC DEBUG COMPILATION
  195. Set compilation debug="true" to enable ASPX debugging. Otherwise, setting this value to
  196. false will improve runtime performance of this application.
  197. Set compilation debug="true" to insert debugging symbols (.pdb information)
  198. into the compiled page. Because this creates a larger file that executes
  199. more slowly, you should set this value to true only when debugging and to
  200. false at all other times. For more information, refer to the documentation about
  201. debugging ASP .NET files.
  202. -->
  203. <compilation defaultLanguage="c#" debug="false" targetFramework="4.7.2">
  204. <assemblies>
  205. <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  206. <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  207. <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
  208. <add assembly="System.Web.Helpers, Version=3.0.0.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  209. <add assembly="System.Web.Mvc, Version=5.2.4.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  210. <add assembly="System.Web.WebPages, Version=3.0.0.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  211. <add assembly="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  212. <add assembly="System.Web.Http, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  213. <add assembly="System.Web.Http.WebHost, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  214. <add assembly="System.Net.Http.Formatting, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  215. <add assembly="netstandard, Version=2.0.0.0, Culture=neutral,PublicKeyToken=cc7b13ffcd2ddd51" />
  216. <add assembly="System.Web.Http.Cors, Version=5.2.6.0, Culture=neutral,PublicKeyToken=31BF3856AD364E35" />
  217. <add assembly="System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  218. </assemblies>
  219. </compilation>
  220. <!-- CUSTOM ERROR MESSAGES
  221. Set customError mode values to control the display of user-friendly
  222. error messages to users instead of error details (including a stack trace):
  223.  
  224. "On" Always display custom (friendly) messages
  225. "Off" Always display detailed ASP.NET error information.
  226. "RemoteOnly" Display custom (friendly) messages only to users not running
  227. on the local Web server. This setting is recommended for security purposes, so
  228. that you do not display application detail information to remote clients.
  229. -->
  230. <customErrors mode="Off" />
  231. <!-- AUTHENTICATION
  232. This section sets the authentication policies of the application. Possible modes are "Windows", "Forms",
  233. "Passport" and "None"
  234. -->
  235. <authentication mode="None">
  236. </authentication>
  237. <!-- IDENTITY
  238. If this setting is true, aspnet will run in the security context of the IIS authenticated
  239. user (ex. IUSR_xxx).
  240. If false, aspnet will run in the security context of the default ASPNET user.
  241. -->
  242. <identity impersonate="false" />
  243. <!-- APPLICATION-LEVEL TRACE LOGGING
  244. Application-level tracing enables trace log output for every page within an application.
  245. Set trace enabled="true" to enable application trace logging. If pageOutput="true", the
  246. trace information will be displayed at the bottom of each page. Otherwise, you can view the
  247. application trace log by browsing the "trace.axd" page from your web application
  248. root.
  249. -->
  250. <trace enabled="false" requestLimit="50" pageOutput="false" traceMode="SortByTime" localOnly="true" />
  251. <sessionState mode="InProc" cookieless="false" timeout="20" sessionIDManagerType="Sitecore.SessionManagement.ConditionalSessionIdManager">
  252. <providers>
  253. <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" sessionType="Standard" connectionStringName="session" pollingEnabled="true" pollingInterval="2" pollingMaxExpiredSessionsPerSecond="0" pollingMaxInstances="1" compression="true" />
  254. <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" />
  255. <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" />
  256. </providers>
  257. </sessionState>
  258. <!-- GLOBALIZATION
  259. This section sets the globalization settings of the application.
  260. -->
  261. <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
  262. <!--
  263. httpRuntime Attributes:
  264. executionTimeout="[seconds]" - time in seconds before request is automatically timed out
  265. maxRequestLength="[KBytes]" - KBytes size of maximum request length to accept
  266. useFullyQualifiedRedirectUrl="[true|false]" - Fully qualifiy the URL for client redirects
  267. minFreeThreads="[count]" - minimum number of free thread to allow execution of new requests
  268. minLocalRequestFreeThreads="[count]" - minimum number of free thread to allow execution of new local requests
  269. appRequestQueueLimit="[count]" - maximum number of requests queued for the application
  270.  
  271. If you change the maxRequestLength setting, you should also change the Media.MaxSizeInDatabase setting.
  272. Media.MaxSizeInDatabase should always be less than maxRequestLength.
  273. -->
  274. <httpRuntime targetFramework="4.7.2" maxRequestLength="512000" executionTimeout="600" enableKernelOutputCache="false" relaxedUrlToFileSystemMapping="true" requestValidationMode="4.0" enableVersionHeader="false" requestValidationType="Sitecore.Web.RequestValidators.SitecoreBackendRequestValidator, Sitecore.Kernel" />
  275. </system.web>
  276. <runtime>
  277. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  278. <dependentAssembly>
  279. <assemblyIdentity name="Lucene.Net" publicKeyToken="85089178b9ac3181" />
  280. <bindingRedirect oldVersion="0.0.0.0-2.9.4.0" newVersion="3.0.3.0" />
  281. </dependentAssembly>
  282. <dependentAssembly>
  283. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
  284. <bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
  285. </dependentAssembly>
  286. <dependentAssembly>
  287. <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  288. <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.0.0.0" />
  289. </dependentAssembly>
  290. <dependentAssembly>
  291. <assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
  292. <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.0.0.0" />
  293. </dependentAssembly>
  294. <dependentAssembly>
  295. <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  296. <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  297. </dependentAssembly>
  298. <dependentAssembly>
  299. <assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  300. <bindingRedirect oldVersion="0.0.0.0-5.2.2.0" newVersion="5.2.2.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  301. </dependentAssembly>
  302. <dependentAssembly>
  303. <assemblyIdentity name="Microsoft.IdentityModel.Logging" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  304. <bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  305. </dependentAssembly>
  306. <dependentAssembly>
  307. <assemblyIdentity name="Microsoft.IdentityModel.Protocols" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  308. <bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  309. </dependentAssembly>
  310. <dependentAssembly>
  311. <assemblyIdentity name="Microsoft.IdentityModel.Protocols.WsFederation" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  312. <bindingRedirect oldVersion="0.0.0.0-5.2.2.0" newVersion="5.2.2.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  313. </dependentAssembly>
  314. <dependentAssembly>
  315. <assemblyIdentity name="Microsoft.IdentityModel.Protocols.OpenIdConnect" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  316. <bindingRedirect oldVersion="0.0.0.0-5.2.2.0" newVersion="5.2.2.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  317. </dependentAssembly>
  318. <dependentAssembly>
  319. <assemblyIdentity name="Microsoft.IdentityModel.Tokens" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  320. <bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  321. </dependentAssembly>
  322. <dependentAssembly>
  323. <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  324. <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  325. </dependentAssembly>
  326. <dependentAssembly>
  327. <assemblyIdentity name="Microsoft.IdentityModel.Protocol.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  328. <bindingRedirect oldVersion="0.0.0.0-1.0.40306.1554" newVersion="1.0.40306.1554" xmlns="urn:schemas-microsoft-com:asm.v1" />
  329. </dependentAssembly>
  330. <dependentAssembly>
  331. <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  332. <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  333. </dependentAssembly>
  334. <dependentAssembly>
  335. <assemblyIdentity name="System.ComponentModel.TypeConverter" publicKeyToken="b03f5f7f11d50a3a" xmlns="urn:schemas-microsoft-com:asm.v1" />
  336. <bindingRedirect oldVersion="4.0.0.0" newVersion="4.1.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  337. </dependentAssembly>
  338. <dependentAssembly>
  339. <assemblyIdentity name="System.Security.Cryptography.Encoding" publicKeyToken="b03f5f7f11d50a3a" xmlns="urn:schemas-microsoft-com:asm.v1" />
  340. <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  341. </dependentAssembly>
  342. <dependentAssembly>
  343. <assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  344. <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.0.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  345. </dependentAssembly>
  346. <dependentAssembly>
  347. <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  348. <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.0.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  349. </dependentAssembly>
  350. <dependentAssembly>
  351. <assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  352. <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  353. </dependentAssembly>
  354. <dependentAssembly>
  355. <assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  356. <bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  357. </dependentAssembly>
  358. <dependentAssembly>
  359. <assemblyIdentity name="System.Security.Cryptography.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  360. <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  361. </dependentAssembly>
  362. <dependentAssembly>
  363. <assemblyIdentity name="Microsoft.IdentityModel.Clients.ActiveDirectory" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  364. <bindingRedirect oldVersion="0.0.0.0-3.19.3.10102" newVersion="3.19.3.10102" xmlns="urn:schemas-microsoft-com:asm.v1" />
  365. </dependentAssembly>
  366. <dependentAssembly>
  367. <assemblyIdentity name="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform" publicKeyToken="31bf3856ad364e35" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  368. <bindingRedirect oldVersion="0.0.0.0-3.19.3.10102" newVersion="3.19.3.10102" xmlns="urn:schemas-microsoft-com:asm.v1" />
  369. </dependentAssembly>
  370. <dependentAssembly>
  371. <assemblyIdentity name="System.Interactive.Async" publicKeyToken="94bc3704cddfc263" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  372. <bindingRedirect oldVersion="0.0.0.0-3.0.3000.0" newVersion="3.0.3000.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  373. </dependentAssembly>
  374. <dependentAssembly>
  375. <assemblyIdentity name="System.Interactive.Async.Providers" publicKeyToken="94bc3704cddfc263" culture="neutral" xmlns="urn:schemas-microsoft-com:asm.v1" />
  376. <bindingRedirect oldVersion="0.0.0.0-3.0.1000.0" newVersion="3.0.1000.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  377. </dependentAssembly>
  378. <dependentAssembly>
  379. <assemblyIdentity name="System.Web.WebPages.Razor" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  380. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  381. </dependentAssembly>
  382. <dependentAssembly>
  383. <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  384. <bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  385. </dependentAssembly>
  386. <dependentAssembly>
  387. <assemblyIdentity name="System.Web.Http.WebHost" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  388. <bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  389. </dependentAssembly>
  390. <dependentAssembly>
  391. <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  392. <bindingRedirect oldVersion="0.0.0.0-5.2.6.0" newVersion="5.2.6.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  393. </dependentAssembly>
  394. <dependentAssembly>
  395. <assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" xmlns="urn:schemas-microsoft-com:asm.v1" />
  396. <bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  397. </dependentAssembly>
  398. <dependentAssembly>
  399. <assemblyIdentity name="Microsoft.Extensions.DependencyInjection" publicKeyToken="adb9793829ddae60" xmlns="urn:schemas-microsoft-com:asm.v1" />
  400. <bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  401. </dependentAssembly>
  402. <dependentAssembly>
  403. <assemblyIdentity name="System.Web.Http.Cors" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  404. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
  405. </dependentAssembly>
  406. <dependentAssembly>
  407. <assemblyIdentity name="Microsoft.OData.Core" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  408. <bindingRedirect oldVersion="7.0.0.0-7.2.0.0" newVersion="7.5.0.20627" xmlns="urn:schemas-microsoft-com:asm.v1" />
  409. </dependentAssembly>
  410. <dependentAssembly>
  411. <assemblyIdentity name="Microsoft.OData.Edm" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  412. <bindingRedirect oldVersion="7.0.0.0-7.2.0.0" newVersion="7.5.0.20627" xmlns="urn:schemas-microsoft-com:asm.v1" />
  413. </dependentAssembly>
  414. <dependentAssembly>
  415. <assemblyIdentity name="Microsoft.Spatial" publicKeyToken="31bf3856ad364e35" xmlns="urn:schemas-microsoft-com:asm.v1" />
  416. <bindingRedirect oldVersion="7.0.0.0-7.2.0.0" newVersion="7.5.0.20627" xmlns="urn:schemas-microsoft-com:asm.v1" />
  417. </dependentAssembly>
  418. <dependentAssembly>
  419. <assemblyIdentity name="Castle.Core" publicKeyToken="407dd0808d44fbdc" culture="neutral" />
  420. <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
  421. </dependentAssembly>
  422. <dependentAssembly>
  423. <assemblyIdentity name="Microsoft.ServiceBus" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  424. <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  425. </dependentAssembly>
  426. <dependentAssembly>
  427. <assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" />
  428. <bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0" />
  429. </dependentAssembly>
  430. <dependentAssembly>
  431. <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  432. <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
  433. </dependentAssembly>
  434. <dependentAssembly>
  435. <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  436. <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
  437. </dependentAssembly>
  438. <dependentAssembly>
  439. <assemblyIdentity name="Microsoft.Extensions.Options" publicKeyToken="adb9793829ddae60" culture="neutral" />
  440. <bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0" />
  441. </dependentAssembly>
  442. <dependentAssembly>
  443. <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  444. <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
  445. </dependentAssembly>
  446. <dependentAssembly>
  447. <assemblyIdentity name="PdfSharp" publicKeyToken="f94615aa0424f9eb" culture="neutral" />
  448. <bindingRedirect oldVersion="0.0.0.0-1.50.5147.0" newVersion="1.50.5147.0" />
  449. </dependentAssembly>
  450. <dependentAssembly>
  451. <assemblyIdentity name="CommonServiceLocator" publicKeyToken="489b6accfaf20ef0" culture="neutral" />
  452. <bindingRedirect oldVersion="0.0.0.0-2.0.3.0" newVersion="2.0.3.0" />
  453. </dependentAssembly>
  454. <dependentAssembly>
  455. <assemblyIdentity name="Remotion.Linq" publicKeyToken="fee00910d6e5f53b" culture="neutral" />
  456. <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
  457. </dependentAssembly>
  458. <dependentAssembly>
  459. <assemblyIdentity name="Microsoft.Extensions.Configuration.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
  460. <bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0" />
  461. </dependentAssembly>
  462. <dependentAssembly>
  463. <assemblyIdentity name="Microsoft.Extensions.FileProviders.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
  464. <bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0" />
  465. </dependentAssembly>
  466. <dependentAssembly>
  467. <assemblyIdentity name="Microsoft.Extensions.Configuration" publicKeyToken="adb9793829ddae60" culture="neutral" />
  468. <bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0" />
  469. </dependentAssembly>
  470. <dependentAssembly>
  471. <assemblyIdentity name="Microsoft.Extensions.Configuration.Xml" publicKeyToken="adb9793829ddae60" culture="neutral" />
  472. <bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0" />
  473. </dependentAssembly>
  474. <dependentAssembly>
  475. <assemblyIdentity name="Microsoft.Extensions.FileProviders.Physical" publicKeyToken="adb9793829ddae60" culture="neutral" />
  476. <bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0" />
  477. </dependentAssembly>
  478. <dependentAssembly>
  479. <assemblyIdentity name="Microsoft.Extensions.Logging.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
  480. <bindingRedirect oldVersion="0.0.0.0-2.1.1.0" newVersion="2.1.1.0" />
  481. </dependentAssembly>
  482. <dependentAssembly>
  483. <assemblyIdentity name="Sitecore.Nexus.Licensing" publicKeyToken="9de34fe2109de40c" culture="neutral" />
  484. <bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0" />
  485. </dependentAssembly>
  486. <dependentAssembly>
  487. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  488. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  489. </dependentAssembly>
  490. <dependentAssembly>
  491. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  492. <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  493. </dependentAssembly>
  494. <dependentAssembly>
  495. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  496. <bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0" />
  497. </dependentAssembly>
  498. <dependentAssembly>
  499. <assemblyIdentity name="Microsoft.IdentityModel.Xml" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  500. <bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0" />
  501. </dependentAssembly>
  502. </assemblyBinding>
  503. </runtime>
  504. <system.serviceModel>
  505. <bindings>
  506. <basicHttpBinding>
  507. <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">
  508. <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
  509. </binding>
  510. </basicHttpBinding>
  511. </bindings>
  512. </system.serviceModel>
  513. <system.codedom>
  514. <compilers>
  515. <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" />
  516. <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
  517. </compilers>
  518. </system.codedom>
  519. </configuration>
  520.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement