-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
37 lines (37 loc) · 990 Bytes
/
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
{
"ConnectionStrings": {
"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=ApiModel;Trusted_Connection=True;MultipleActiveResultSets=true"
//"Server=db-server; Database=ApiModel;User=sa;Password=Pass@word1"
},
"CosmosSettings": {
"DatabaseName": "",
"AccountUri": "https://localhost:8081",
"AccountKey": ""
},
"JwtSettings": {
"Secret": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"TokenLifeTime": "00:00:45"
},
"ApiKey": "MySecretKey",
"SwaggerOptions": {
"JsonRoute": "swagger/{documentName}/swagger.json",
"Description": "Our API",
"UIEndpoint": "v1/swagger.json"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"FacebookAuthSettings": {
"AppId": "446983179855051",
"AppSecret": "xxxxxx"
}
"AllowedHosts": "*",
"RedisCacheSettings": {
"Enabled": true,
"ConnectionString": "localhost"
}
}