-
Notifications
You must be signed in to change notification settings - Fork 14
/
appsettings.json
47 lines (47 loc) · 1.46 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
42
43
44
45
46
47
{
"$schema": "https://json.schemastore.org/appsettings.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
}
},
"ConnectionStrings": {
"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
"umbracoDbDSN_ProviderName": "Microsoft.Data.Sqlite"
},
"Umbraco": {
"CMS": {
"Hosting": {
"Debug": false
},
"Global": {
"Id": "07d45c78-b596-4396-aa3a-71192f7405a4",
"UseHttps": true,
"Smtp": {
"From": "test@test.com",
"Host": "localhost",
"Port": 25
},
"DisableElectionForSingleServer": true
},
"ModelsBuilder": {
"Enable": true,
"ModelsMode": "SourceCodeManual",
"ModelsDirectory": "~/../Umbraco.Commerce.DemoStore/Models",
"ModelsNamespace": "Umbraco.Commerce.DemoStore.Models",
"AcceptUnsafeModelsDirectory": true
}
},
"Commerce": {
"Cookies": {
"HttpOnly": true,
"SameSite": "Lax"
}
}
}
}