Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit ce01434

Browse files
authored
Create appsettings.json
1 parent 65b406d commit ce01434

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

appsettings.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"AllowedHosts": "*",
3+
"ConnectionStrings": {
4+
"DefaultConnection": "Server=;Port=3306;Database=InvoicesMgr;Uid=;Pwd=;"
5+
},
6+
"JwtKeys": {
7+
"SymmetricSecurityKey": "", // Symmetric security key for JWT
8+
"Issuer": "", // Issuer of the JWT
9+
"Audience": "", // Audience of the JWT
10+
"Expiration": 30 // 30 minutes //The login token has a durability of 30 minutes
11+
},
12+
"Logging": {
13+
"LogLevel": {
14+
"Default": "Warning" //The Output from the console will be only warnings and errors
15+
}
16+
},
17+
"Kestrel": {
18+
"Limits": {
19+
"MaxRequestBodySize": 33554432 //That are 32mb
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)