-
Notifications
You must be signed in to change notification settings - Fork 1
/
appsettings.json
75 lines (74 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"Domain": "<define as environment var AzureAd:Domain>",
"TenantId": "<define as environment var AzureAd:TenantId>",
"ClientId": "<define as environment var AzureAd:ClientId>",
"CallbackPath": "/signin-oidc"
},
"ActivityLogTTL": 172800,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"TinyMCE": {
"ApiKey": "no-api-key"
},
"SiteDB": {
"DatabaseName": "<define as environment SiteDB:DatabaseName>",
"CollectionName": "<define as environment SiteDB:CollectionName>",
"EndPointUrl": "<define as environment SiteDB:EndPointUrl>",
"CreateIfNotExists": false
},
"RecaptchaSettings": {
"SecretKey": "define in environemnt",
"SiteKey": "define in environment"
},
"FunctionSiteTools": {
"FunctionAppName": "rbrandssitetools2",
"StorageConnectionString": "connectionString",
"DbTenant": "rbrands",
"TranslateFunctionKey": "api-key",
"AnalyzeImageFunctionKey": "api-key",
"From": "[email protected]",
"FromName": "Robert Brands"
},
"NewsConfig": {
"Blog": {
"Name": "Blog",
"WriteAccess": "Admin"
},
"Scuderia": {
"Name": "Scuderia Blog",
"WriteAccess": "Admin"
},
"Girona": {
"Name": "Scuderia Page",
"WriteAccess": "Admin"
},
"Reise": {
"Name": "Wanderungen Page",
"WriteAccess": "Admin"
},
"Wanderungen": {
"Name": "Wanderungen Page",
"WriteAccess": "Admin"
},
"Homepage": {
"Name": "Homepage",
"WriteAccess": "Admin"
},
"Headline": {
"Name": "Titelseite",
"WriteAccess": "Admin"
},
"Termine": {
"Name": "Termine",
"WriteAccess": "Admin"
}
},
"AllowedHosts": "*"
}