Signed-off-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
Bjarke Berg
2020-07-04 19:04:04 +02:00
parent 9fbb7c08c6
commit c49f50e6d4
15 changed files with 446 additions and 45 deletions

View File

@@ -119,10 +119,4 @@
</Content>
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="~\App_Data\packages\createdPackages.config" />
<_ContentIncludedByDefault Remove="~\App_Data\packages\installedPackages.config" />
<_ContentIncludedByDefault Remove="~\Web.config" />
</ItemGroup>
</Project>

View File

@@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"umbracoDbDSN": "server=localhost;database=NetCore;user id=sa;password='1vupRebv'"
"umbracoDbDSN": ""
},
"Logging": {
"LogLevel": {

View File

@@ -19,7 +19,7 @@
<!-- This is used by the default log viewer in the Umbraco backoffice -->
<add key="serilog:using:File" value="Umbraco.Infrastructure" />
<add key="serilog:write-to:File.formatter" value="Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact" />
<add key="serilog:write-to:File.path" value="%UMBLOGDIR%/UmbracoTraceLog.%MACHINENAME%..json" />
<add key="serilog:write-to:File.path" value="%UMBLOGDIR%/UmbracoTraceLog.%MACHINENAME%..json" /> <!-- folder seperator need to be / and not \ to support both windows and linux-->
<add key="serilog:write-to:File.restrictedToMinimumLevel" value="Debug" />
<add key="serilog:write-to:File.retainedFileCountLimit" value="" /> <!-- Number of log files to keep (or remove value to keep all files) -->
<add key="serilog:write-to:File.rollingInterval" value="Day" /> <!-- Create a new log file every Minute/Hour/Day/Month/Year/infinite -->