mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 19:04:51 +08:00
132 lines
6.6 KiB
XML
132 lines
6.6 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
Note: As an alternative to hand editing this file you can use the
|
|
web admin tool to configure settings for your application. Use
|
|
the Website->Asp.Net Configuration option in Visual Studio.
|
|
A full list of settings and comments can be found in
|
|
machine.config.comments usually located in
|
|
\Windows\Microsoft.Net\Framework\v2.x\Config
|
|
-->
|
|
<configuration>
|
|
|
|
<appSettings/>
|
|
<system.diagnostics configSource="Config\Diagnostics.config"/>
|
|
<!--
|
|
Set default transaction timeout to 30 minutes so that interactive debugging
|
|
is easier (default timeout is less than one minute)
|
|
-->
|
|
<system.transactions>
|
|
<defaultSettings timeout="00:30:00"/>
|
|
</system.transactions>
|
|
<system.web>
|
|
<machineKey validationKey="013B82F217ABB7EAB1F699E4E5B4D290030644D435994692354DAE82B06568B058BFE3C57BF199A41FFDBC84F3BC74D9C5BD96D1265F36A22D58347B591AC8DD" decryptionKey="04797035C490263D73ED991C84C5DFCD0D0206AD4F12BC3638A38FBEABEBB8C7" validation="SHA1" decryption="AES" />
|
|
<httpRuntime requestValidationMode="2.0" />
|
|
<!--
|
|
Set compilation debug="true" to insert debugging
|
|
symbols into the compiled page. Because this
|
|
affects performance, set this value to true only
|
|
during development.
|
|
-->
|
|
<compilation debug="true" targetFramework="4.0">
|
|
<buildProviders>
|
|
<add extension=".csproj" type="Orchard.Environment.Extensions.Compilers.CSharpExtensionBuildProviderShim"/>
|
|
</buildProviders>
|
|
<assemblies>
|
|
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
|
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
|
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
|
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
|
|
</assemblies>
|
|
</compilation>
|
|
<!--
|
|
The <authentication> section enables configuration
|
|
of the security authentication mode used by
|
|
ASP.NET to identify an incoming user.
|
|
-->
|
|
<authentication mode="Forms">
|
|
<forms loginUrl="~/Users/Account/AccessDenied" timeout="2880"/>
|
|
</authentication>
|
|
<membership defaultProvider="OrchardMembershipProvider">
|
|
<providers>
|
|
<clear/>
|
|
<!--<add name="AspNetSqlMembershipProvider"
|
|
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
|
|
connectionStringName="ApplicationServices"
|
|
enablePasswordRetrieval="false"
|
|
enablePasswordReset="true"
|
|
requiresQuestionAndAnswer="false"
|
|
requiresUniqueEmail="false"
|
|
passwordFormat="Hashed"
|
|
maxInvalidPasswordAttempts="5"
|
|
minRequiredPasswordLength="6"
|
|
minRequiredNonalphanumericCharacters="0"
|
|
passwordAttemptWindow="10"
|
|
passwordStrengthRegularExpression=""
|
|
applicationName="/"
|
|
/>-->
|
|
<add name="OrchardMembershipProvider" type="Orchard.Security.Providers.OrchardMembershipProvider, Orchard.Framework" applicationName="/"/>
|
|
</providers>
|
|
</membership>
|
|
<profile>
|
|
<providers>
|
|
<clear/>
|
|
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/"/>
|
|
</providers>
|
|
</profile>
|
|
<roleManager enabled="false">
|
|
<providers>
|
|
<clear/>
|
|
<add name="OrchardRoleProvider" type="Orchard.Security.Providers.OrchardRoleProvider, Orchard.Framework"/>
|
|
<add connectionStringName="ApplicationServices" applicationName="/" name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
|
|
<add applicationName="/" name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
|
|
</providers>
|
|
</roleManager>
|
|
<!--
|
|
The <customErrors> section enables configuration
|
|
of what to do if/when an unhandled error occurs
|
|
during the execution of a request. Specifically,
|
|
it enables developers to configure html error pages
|
|
to be displayed in place of a error stack trace.
|
|
-->
|
|
<customErrors mode="Off"/>
|
|
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
|
|
<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"/>
|
|
<add namespace="Orchard.Mvc.Html"/>
|
|
</namespaces>
|
|
</pages>
|
|
<httpHandlers>
|
|
<add verb="*" path="*.mvc" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
|
</httpHandlers>
|
|
</system.web>
|
|
<system.web.extensions/>
|
|
<!--
|
|
The system.webServer section is required for running ASP.NET AJAX under Internet
|
|
Information Services 7.0. It is not necessary for previous version of IIS.
|
|
-->
|
|
<system.webServer>
|
|
<validation validateIntegratedModeConfiguration="false"/>
|
|
<modules runAllManagedModulesForAllRequests="true">
|
|
</modules>
|
|
<handlers>
|
|
<remove name="MvcHttpHandler"/>
|
|
<remove name="UrlRoutingHandler"/>
|
|
<add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
|
</handlers>
|
|
</system.webServer>
|
|
<runtime>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<probing privatePath="App_Data/Dependencies"/>
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
|
|
<bindingRedirect oldVersion="2.0.0.0" newVersion="3.0.0.0"/>
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</runtime>
|
|
</configuration>
|