-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
37 lines (37 loc) · 901 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
{
"Serilog": {
"Using": [],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId" ],
"WriteTo": [
{ "Name": "Console" },
{
"Name": "Seq",
"Args": {
"serverUrl": "http://localhost:8081"
}
}
]
},
"AppName": "TutorialApp",
"AllowedHosts": "*",
"ConnectionStrings": {
"PostgreSQL": "User ID=postgres;Password=passwordData129;Host=localhost;Port=5432;Database=documentario_app_db;Pooling=true;Connection Lifetime=0"
},
"Authentication": {
"ExpireDays": 10,
"Issuer": "documentario.pl"
},
"FileSave": {
"ThumbNailsFolder": "timgs",
"UserDataFolder": "usrdata",
"DocumentsFolder": "docs",
"VideosFolder": "vids"
}
}