16 lines
516 B
JSON
16 lines
516 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AccessQueue": {
|
|
"CapacityLimit": 3, // Maximum number of active users
|
|
"ActivitySeconds": 2, // Time since last access before a user is considered inactive
|
|
"ExpirationSeconds": 10, // 12 hours - Time before a user access is revoked
|
|
"RollingExpiration": true // Whether to extend expiration time on access
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|