-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
50 lines (48 loc) · 1.34 KB
/
appsettings.json
File metadata and controls
50 lines (48 loc) · 1.34 KB
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
42
43
44
45
46
47
48
49
50
{
"$schema": "appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
}
},
"Umbraco": {
"CMS": {
"WebRouting": {
"TryMatchingEndpointsForAllPages": false,
"TrySkipIisCustomErrors": false,
"InternalRedirectPreservesTemplate": false,
"DisableAlternativeTemplates": false,
"ValidateAlternativeTemplates": false,
"DisableFindContentByIdPath": false,
"DisableRedirectUrlTracking": false,
"UrlProviderMode": "Auto",
"UmbracoApplicationUrl": "https://localhost:44357/"
},
"Global": {
"Id": "2ac7f118-558c-41eb-9daa-c32fef27315b",
"SanitizeTinyMce": true
},
"Content": {
"AllowEditInvariantFromNonDefault": true,
"ContentVersionCleanupPolicy": {
"EnableCleanup": true
}
},
"Unattended": {
"UpgradeUnattended": true
},
"Security": {
"AllowConcurrentLogins": false
}
}
},
"ConnectionStrings": {
"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
"umbracoDbDSN_ProviderName": "Microsoft.Data.Sqlite"
}
}