2009-11-07 22:49:58 +00:00
|
|
|
<?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>
|
2010-05-06 10:28:29 -07:00
|
|
|
<appSettings/>
|
|
|
|
<system.diagnostics configSource="Config\Diagnostics.config"/>
|
|
|
|
<!--
|
2010-01-24 22:01:32 +00:00
|
|
|
Set default transaction timeout to 30 minutes so that interactive debugging
|
|
|
|
is easier (default timeout is less than one minute)
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<system.transactions>
|
|
|
|
<defaultSettings timeout="00:30:00"/>
|
|
|
|
</system.transactions>
|
|
|
|
<system.web>
|
|
|
|
<!--
|
2009-11-07 22:49:58 +00:00
|
|
|
Set compilation debug="true" to insert debugging
|
|
|
|
symbols into the compiled page. Because this
|
|
|
|
affects performance, set this value to true only
|
|
|
|
during development.
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<compilation debug="true" targetFramework="4.0">
|
|
|
|
<assemblies>
|
|
|
|
<add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
|
|
|
<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"/></assemblies>
|
|
|
|
</compilation>
|
|
|
|
<!--
|
2009-11-07 22:49:58 +00:00
|
|
|
The <authentication> section enables configuration
|
|
|
|
of the security authentication mode used by
|
|
|
|
ASP.NET to identify an incoming user.
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<authentication mode="Forms">
|
|
|
|
<forms loginUrl="~/Users/Account/AccessDenied" timeout="2880"/>
|
|
|
|
</authentication>
|
|
|
|
<membership defaultProvider="OrchardMembershipProvider">
|
|
|
|
<providers>
|
|
|
|
<clear/>
|
|
|
|
<!--<add name="AspNetSqlMembershipProvider"
|
2009-11-07 22:49:58 +00:00
|
|
|
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="/"
|
2009-11-10 03:41:01 +00:00
|
|
|
/>-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<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>
|
|
|
|
<!--
|
2009-11-07 22:49:58 +00:00
|
|
|
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.
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<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=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
|
|
|
</httpHandlers>
|
|
|
|
</system.web>
|
|
|
|
<system.web.extensions/>
|
|
|
|
<!--
|
2009-11-07 22:49:58 +00:00
|
|
|
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.
|
|
|
|
-->
|
2010-05-06 10:28:29 -07:00
|
|
|
<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=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
|
|
|
|
</handlers>
|
|
|
|
</system.webServer>
|
|
|
|
<runtime>
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
|
|
|
|
</dependentAssembly>
|
|
|
|
</assemblyBinding>
|
|
|
|
</runtime>
|
|
|
|
</configuration>
|