-
Notifications
You must be signed in to change notification settings - Fork 6
/
appsettings.json
57 lines (57 loc) · 1.37 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
{
"Application": {
"Name": "MySampleApi",
"Version": "0.1.0"
},
"ConnectionStrings": {
"MySqlProvider": "server=localhost;userid=root;password=root;database=test_db6;",
"PostgreSqlProvider": "host=localhost;user id=adnan;password=;database=test_db18;pooling=true;"
},
"Jwt": {
"Audiences": [
"http://localhost:5000"
],
"Audience": "http://localhost:5000",
"Authority": "http://localhost:5000/",
"SecretKey": "SET_YOUR_SECRET_KEY",
"AccessTokenLifetime": 360000,
"IdentityTokenLifetime": 3800,
"RefreshTokenLifetime": 3800
},
"EmailProviders": {
"Mailgun": {
"Domain": "sandboxcf5f41bbf2f84f15a386c60e253b5fe8.mailgun.org",
"ApiKey": "key-8d32c046d7f14ada8d5ba8253e3e30df",
"FromName": "My Company",
"FromAddress": "[email protected]"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Information",
"System": "Information"
}
},
"WriteTo": [
{
"Name": "Async",
"Args": {
"configure": [
{
"Name": "LiterateConsole"
},
{
"Name": "RollingFile",
"Args": {
"pathFormat": "Logs/log-{Date}.txt",
"shared": true
}
}
]
}
}
]
}
}