22 lines
502 B
JSON
22 lines
502 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
|
|
"ConnectionStrings": {
|
|
"PostgresConnection": "Host=localhost;Port=5555;Database=webapp;Username=postgres;Password=123456"
|
|
},
|
|
"Jwt": {
|
|
"Key": "YourSuperSecretKeyForJwtTokenGeneration2024!@#$%^&*()",
|
|
"Issuer": "SignalRChat",
|
|
"Audience": "SignalRChatUsers",
|
|
"AccessTokenExpirationMinutes": 5,
|
|
"RefreshTokenExpirationDays": 60
|
|
},
|
|
|
|
"AllowedHosts": "*"
|
|
}
|