mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Cleaned up after merge of Azure upgrade from 1.9.x.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,31 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<DiagnosticsConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
|
|
||||||
<PublicConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
|
|
||||||
<WadCfg>
|
|
||||||
<DiagnosticMonitorConfiguration overallQuotaInMB="4096">
|
|
||||||
<DiagnosticInfrastructureLogs scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Warning" />
|
|
||||||
<Directories scheduledTransferPeriod="PT1M">
|
|
||||||
<IISLogs containerName="wad-iis-logfiles" />
|
|
||||||
</Directories>
|
|
||||||
<PerformanceCounters>
|
|
||||||
<PerformanceCounterConfiguration counterSpecifier="\Memory\Available MBytes" sampleRate="PT3M" />
|
|
||||||
<PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\ISAPI Extension Requests/sec" sampleRate="PT3M" />
|
|
||||||
<PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\Bytes Total/Sec" sampleRate="PT3M" />
|
|
||||||
<PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Requests/Sec" sampleRate="PT3M" />
|
|
||||||
<PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Errors Total/Sec" sampleRate="PT3M" />
|
|
||||||
<PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Queued" sampleRate="PT3M" />
|
|
||||||
<PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Rejected" sampleRate="PT3M" />
|
|
||||||
</PerformanceCounters>
|
|
||||||
<WindowsEventLog scheduledTransferPeriod="PT1M">
|
|
||||||
<DataSource name="Application!*" />
|
|
||||||
</WindowsEventLog>
|
|
||||||
<Logs scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Warning" />
|
|
||||||
</DiagnosticMonitorConfiguration>
|
|
||||||
</WadCfg>
|
|
||||||
<StorageAccount>devstoreaccount1</StorageAccount>
|
|
||||||
</PublicConfig>
|
|
||||||
<PrivateConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
|
|
||||||
<StorageAccount name="devstoreaccount1" key="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==" />
|
|
||||||
</PrivateConfig>
|
|
||||||
<IsEnabled>true</IsEnabled>
|
|
||||||
</DiagnosticsConfiguration>
|
|
@@ -99,9 +99,7 @@
|
|||||||
<Properties>
|
<Properties>
|
||||||
<!-- Set Value="true" to read the client host address from the specified HTTP header. -->
|
<!-- Set Value="true" to read the client host address from the specified HTTP header. -->
|
||||||
<Property Name="EnableClientHostAddressHeader" Value="false"/>
|
<Property Name="EnableClientHostAddressHeader" Value="false"/>
|
||||||
|
<!-- Set Value to the HTTP header name from which to read the client host address. Only used when EnableClientHostAddressHeader="true". If the specified header was not found, the system will fall back to the client host address as provided by the Request object.-->
|
||||||
<!-- Set Value to the HTTP header name from which to read the client host address. Only used when EnableClientHostAddressHeader="true".
|
|
||||||
If the specified header was not found, the system will fall back to the client host address as provided by the Request object.-->
|
|
||||||
<Property Name="ClientHostAddressHeaderName" Value="X-Forwarded-For"/>
|
<Property Name="ClientHostAddressHeaderName" Value="X-Forwarded-For"/>
|
||||||
</Properties>
|
</Properties>
|
||||||
</Component>
|
</Component>
|
||||||
|
@@ -9,41 +9,28 @@
|
|||||||
|
|
||||||
<!--
|
<!--
|
||||||
To create tenant specific configurations, copy this file to ~/Config/Sites.{tenant}.config
|
To create tenant specific configurations, copy this file to ~/Config/Sites.{tenant}.config
|
||||||
where {tenant} is the technical name of the targetted tenant
|
where {tenant} is the technical name of the targetted tenant.
|
||||||
|
|
||||||
Allowed scopes: per-dependency, single-instance or per-lifetime-scope
|
Allowed scopes: per-dependency, single-instance or per-lifetime-scope
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
|
||||||
<components>
|
<components>
|
||||||
<!--
|
<!--
|
||||||
Uncomment to use ReadUncommitted as the default isolation level. Please not that
|
Uncomment to use ReadUncommitted as the default isolation level. Please not that
|
||||||
Sql Server Ce doesn't support ReadUncommitted.
|
Sql Server Ce doesn't support ReadUncommitted. Isolation level for all database transaction.
|
||||||
|
|
||||||
Isolation level for all database transaction.
|
|
||||||
See http://msdn.microsoft.com/en-us/library/system.transactions.isolationlevel.aspx
|
See http://msdn.microsoft.com/en-us/library/system.transactions.isolationlevel.aspx
|
||||||
-->
|
-->
|
||||||
<!--
|
<!--<component instance-scope="per-lifetime-scope" type="Orchard.Data.SessionLocator, Orchard.Framework" service="Orchard.Data.ISessionLocator">
|
||||||
<component instance-scope="per-lifetime-scope"
|
|
||||||
type="Orchard.Data.SessionLocator, Orchard.Framework"
|
|
||||||
service="Orchard.Data.ISessionLocator">
|
|
||||||
<properties>
|
<properties>
|
||||||
<property name="IsolationLevel" value="ReadUncommitted" />
|
<property name="IsolationLevel" value="ReadUncommitted" />
|
||||||
</properties>
|
</properties>
|
||||||
</component>
|
</component>-->
|
||||||
-->
|
|
||||||
|
|
||||||
<!--
|
<!-- Delay between background services executions. -->
|
||||||
Delay between background services executions
|
<!--<component instance-scope="single-instance" type="Orchard.Tasks.SweepGenerator" service="Orchard.Tasks.ISweepGenerator">
|
||||||
<component instance-scope="single-instance"
|
|
||||||
type="Orchard.Tasks.SweepGenerator"
|
|
||||||
service="Orchard.Tasks.ISweepGenerator">
|
|
||||||
<properties>
|
<properties>
|
||||||
<property name="Interval" value="00:01:00" />
|
<property name="Interval" value="00:01:00" />
|
||||||
</properties>
|
</properties>
|
||||||
</component>
|
</component>-->
|
||||||
-->
|
|
||||||
</components>
|
</components>
|
||||||
</autofac>
|
</autofac>
|
||||||
|
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
<IISExpressWindowsAuthentication />
|
<IISExpressWindowsAuthentication />
|
||||||
<IISExpressUseClassicPipelineMode />
|
<IISExpressUseClassicPipelineMode />
|
||||||
<TargetFrameworkProfile />
|
<TargetFrameworkProfile />
|
||||||
<UseGlobalApplicationHostFile />
|
<UseGlobalApplicationHostFile>true</UseGlobalApplicationHostFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Autofac, Version=2.1.13.813, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
|
<Reference Include="Autofac">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\autofac\Autofac.dll</HintPath>
|
<HintPath>..\..\..\lib\autofac\Autofac.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
@@ -57,30 +57,37 @@
|
|||||||
<Reference Include="Microsoft.ApplicationServer.Caching.AzureClientHelper">
|
<Reference Include="Microsoft.ApplicationServer.Caching.AzureClientHelper">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.AzureClientHelper.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.AzureClientHelper.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.ApplicationServer.Caching.AzureCommon">
|
<Reference Include="Microsoft.ApplicationServer.Caching.AzureCommon">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.AzureCommon.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.AzureCommon.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.ApplicationServer.Caching.Client">
|
<Reference Include="Microsoft.ApplicationServer.Caching.Client">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.Client.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.Client.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.ApplicationServer.Caching.Core">
|
<Reference Include="Microsoft.ApplicationServer.Caching.Core">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.Core.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.ApplicationServer.Caching.Core.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Data.Edm">
|
<Reference Include="Microsoft.Data.Edm">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.Data.Edm.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.Data.Edm.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Data.OData">
|
<Reference Include="Microsoft.Data.OData">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.Data.OData.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.Data.OData.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Web.DistributedCache">
|
<Reference Include="Microsoft.Web.DistributedCache">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.Web.DistributedCache.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.Web.DistributedCache.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Web.Infrastructure">
|
<Reference Include="Microsoft.Web.Infrastructure">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
@@ -90,18 +97,20 @@
|
|||||||
<Reference Include="Microsoft.WindowsAzure.Configuration">
|
<Reference Include="Microsoft.WindowsAzure.Configuration">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.Configuration.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.Configuration.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.WindowsAzure.Diagnostics, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
|
<Reference Include="Microsoft.WindowsAzure.Diagnostics">
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.Diagnostics.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.Diagnostics.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.WindowsAzure.ServiceRuntime, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
|
<Reference Include="Microsoft.WindowsAzure.ServiceRuntime">
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.ServiceRuntime.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.ServiceRuntime.dll</HintPath>
|
||||||
<Private>False</Private>
|
<Private>False</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.WindowsAzure.Storage">
|
<Reference Include="Microsoft.WindowsAzure.Storage">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.Storage.dll</HintPath>
|
<HintPath>..\..\..\lib\windowsazure\Microsoft.WindowsAzure.Storage.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json">
|
<Reference Include="Newtonsoft.Json">
|
||||||
<HintPath>..\..\..\lib\newtonsoft.json\Newtonsoft.Json.dll</HintPath>
|
<HintPath>..\..\..\lib\newtonsoft.json\Newtonsoft.Json.dll</HintPath>
|
||||||
|
@@ -42,8 +42,7 @@
|
|||||||
<system.diagnostics>
|
<system.diagnostics>
|
||||||
<trace>
|
<trace>
|
||||||
<listeners>
|
<listeners>
|
||||||
<add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
|
<add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" name="AzureDiagnostics">
|
||||||
name="AzureDiagnostics">
|
|
||||||
<filter type="" />
|
<filter type="" />
|
||||||
</add>
|
</add>
|
||||||
</listeners>
|
</listeners>
|
||||||
|
Reference in New Issue
Block a user