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
| {
| "Logging": {
| "LogLevel": {
| "Default": "Information",
| "Microsoft.AspNetCore": "Warning"
| }
| },
| "GrpcPort": 0,
| "ApiPort": 0,
| "JwtSecurityKey": "RANDOM_KEY_MUST_NOT_BE_SHARED",
| "JwtIssuer": "https://localhost",
| "JwtAudience": "https://localhost",
| "JwtExpiryInDays": 1,
| "ConnectionStrings": {
| "SystemManagementCenterDB": "Data Source=localhost;Initial Catalog=SystemCenter;Persist Security Info=True;User ID=sa;password=oatcti",
| "HotelPmsDB": "Data Source=localhost;Initial Catalog=HotelPms;Persist Security Info=True;User ID=sa;password=oatcti",
| "HotelCommonDB": "Data Source=localhost;Initial Catalog=HotelCommon;Persist Security Info=True;User ID=sa;password=oatcti"
| },
| "AllowedHosts": "*",
| "Kestrel": {
| "EndpointDefaults": {
| "Protocols": "Http2"
| }
| }
| }
|
|