-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
41 lines (41 loc) · 1.08 KB
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
}
},
"Umbraco": {
"CMS": {
"Global": {
"Id": "45725d8b-e522-4295-b8e8-1e4e360b4201",
"SanitizeTinyMce": true
},
"Content": {
"AllowEditInvariantFromNonDefault": true,
"ContentVersionCleanupPolicy": {
"EnableCleanup": true
}
},
"Unattended": {
"UpgradeUnattended": true,
"InstallUnattended": true,
"UnattendedUserEmail": "[email protected]",
"UnattendedUserName": "Admin",
"UnattendedUserPassword": "1234567890"
},
"Security": {
"AllowConcurrentLogins": false
}
}
},
"ConnectionStrings": {
"umbracoDbDSN": "Data Source=(localdb)\\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\\Umbraco.mdf;Integrated Security=True",
"umbracoDbDSN_ProviderName": "Microsoft.Data.SqlClient"
}
}