27 lines
610 B
JSON
27 lines
610 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Jwt": {
|
|
"Key": "YourSuperSecretKey123456784124214190!",
|
|
"Issuer": "IMDemo",
|
|
"Audience": "IMClients",
|
|
"AccessTokenMinutes": 30,
|
|
"RefreshTokenDays": 30
|
|
},
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Server=frp-era.com;Port=26582;Database=IM;User=product;Password=12345678;",
|
|
"Redis": "192.168.5.100:6379"
|
|
},
|
|
"RabbitMQOptions": {
|
|
"Host": "192.168.5.100",
|
|
"Port": 5672,
|
|
"Username": "test",
|
|
"Password": "123456"
|
|
}
|
|
}
|