-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
33 lines (32 loc) · 923 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
{
"EmailConfiguration": {
"SmtpServer": "smtp.myserver.com",
"SmtpPort": 465,
"SmtpUsername": "smtpusername",
"SmtpPassword": "smtppassword",
"PopServer": "popserver",
"PopPort": 995,
"PopUsername": "popusername",
"PopPassword": "poppassword"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"SQLServerConnection": {
"ConnectionString": "Server=localhost;Database=Inventory;Trusted_Connection=True;ConnectRetryCount=0;"
},
"AllowedHosts": "*",
"httpProtocol": {
"customHeaders": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "Content-Type",
"Access-Control-Allow-Methods": "GET,POST,PUT,DELETE,OPTIONS",
"Access-Control-Allow-Credentials": "true"
}
},
"AppSettings": {
"Secret": "THIS IS USED TO SIGN AND VERIFY JWT TOKENS, REPLACE IT WITH YOUR OWN SECRET, IT CAN BE ANY STRING"
}
}