* Revert "Change default UpgradeUnattended value to true (#13281)"
This reverts commit e5d6372dbd.
* Set UpgradeUnattended value to true for new projects
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"$schema": "appsettings-schema.json",
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information",
|
|
"System": "Warning"
|
|
}
|
|
}
|
|
},
|
|
//#if (HasConnectionString)
|
|
"ConnectionStrings": {
|
|
"umbracoDbDSN": "CONNECTION_STRING_FROM_TEMPLATE",
|
|
"umbracoDbDSN_ProviderName": "CONNECTION_STRING_PROVIDER_NAME_FROM_TEMPLATE"
|
|
},
|
|
//#endif
|
|
"Umbraco": {
|
|
"CMS": {
|
|
"Global": {
|
|
"Id": "TELEMETRYID_FROM_TEMPLATE",
|
|
//#if (UseHttpsRedirect)
|
|
"UseHttps": true,
|
|
//#endif
|
|
//#if (HasNoNodesViewPath)
|
|
"NoNodesViewPath": "NO_NODES_VIEW_PATH_FROM_TEMPLATE",
|
|
//#endif
|
|
"SanitizeTinyMce": true
|
|
},
|
|
"Content": {
|
|
"AllowEditInvariantFromNonDefault": true,
|
|
"ContentVersionCleanupPolicy": {
|
|
"EnableCleanup": true
|
|
}
|
|
},
|
|
"Unattended": {
|
|
"UpgradeUnattended": true
|
|
}
|
|
}
|
|
}
|
|
}
|