23 lines
432 B
JSON
23 lines
432 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Cors": {
|
|
"AllowedOrigins": [
|
|
"http://localhost:3000"
|
|
]
|
|
},
|
|
"RateLimiting": {
|
|
"PermitLimit": 100,
|
|
"WindowSeconds": 60,
|
|
"QueueLimit": 0
|
|
},
|
|
"Persistence": {
|
|
"Provider": "InMemory"
|
|
}
|
|
}
|