-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
32 lines (32 loc) · 1.13 KB
/
appsettings.json
File metadata and controls
32 lines (32 loc) · 1.13 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
{
"AppSettings": {
"Secret": "REPLACE_WITH_YOUR_JWT_SECRET",
"DataStorageFolder": "data",
"UserStorageFolder": "user",
"NoReplyEMailHost": "smtp.1und1.de",
"NoReplyEMailPort": 587,
"NoReplyEMailAddress": "noreply@shopping-now.net",
"NoReplyEMailPassword": "REPLACE_WITH_EMAIL_PASSWORD",
"DbServerAddress": "server=localhost;",
"DbServerAddressDocker": "server=db;port=3306;",
"DbName": "shoppinglistserver",
"DbUser": "ShoppingListDBUser",
"DbPassword": "REPLACE_WITH_DB_PASSWORD",
"FacebookAppID": "REPLACE_WITH_FACEBOOK_APP_ID",
"AppleClientID": "GenericListApp.iOS.app",
"AppleSignInKeyId": "REPLACE_WITH_APPLE_KEY_ID",
"AppleTeamId": "REPLACE_WITH_APPLE_TEAM_ID",
"AppleSignInP8SecretResourcePath": "ShoppingListServer.auth.AuthKey_REPLACE_WITH_APPLE_KEY_ID.p8",
"AppleSignInP8SecretPath": "auth/AuthKey_REPLACE_WITH_APPLE_KEY_ID.p8",
"UseHttpsRedirect": "True",
"UseDocker": "True"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}