25 lines
501 B
JSON
25 lines
501 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"ConnectionStrings": {
|
|
"Default": "Host=localhost;Port=5432;Database=webscrapper_dev;Username=postgres;Password=devpassword;"
|
|
},
|
|
"Scraper": {
|
|
"DelayMinMs": 100,
|
|
"DelayMaxMs": 3000,
|
|
"RateLimit": {
|
|
"PerDomainMinDelayMs": 500
|
|
},
|
|
"Retry": {
|
|
"MaxAttempts": 5,
|
|
"BaseDelayMs": 250,
|
|
"MaxDelayMs": 8000
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|