-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathappsettings.json
50 lines (50 loc) · 1.34 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
},
"File": {
"Path": "BillingLog.txt",
"Append": true,
"MinLevel": "Trace",
"FileSizeLimitBytes": 10240,
"MaxRollingFiles": 5
}
},
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:18080"
}
}
},
"AuthService": "Simple",
"DbConfig": {
"AccountDB": "Data Source=.\\;TrustServerCertificate=True;Initial Catalog=SILKROAD_R_ACCOUNT;User ID=sa;Password=1;",
"JoymaxPortalDB": "Data Source=.\\;TrustServerCertificate=True;Initial Catalog=GB_JoymaxPortal;User ID=sa;Password=1;"
},
"NotificationService": {
"Type": "Email"
},
"NationPingService": {
"ListenAddress": "0.0.0.0",
"ListenPort": 12989
},
"EmailService": {
"From": "yourEmail",
"FromFriendlyName": "YourServerName??",
"SmtpServer": "smtp.gmail.com",
"UseSSL": true,
"Port": 465,
"Username": "FOLLOW https://code-maze.com/aspnetcore-send-email/",
"Password": "FOLLOW https://code-maze.com/aspnetcore-send-email/",
"SkipTokenValidation": false
},
"ServiceCompany": 11,
"RequestTimeoutSeconds": 60,
"PortalCGIAgentHeader": "Portal_CGI_Agent",
"SaltKey": "eset5ag.nsy-g6ky5.mp",
"AllowedHosts": "*"
}