28 lines
531 B
JSON
28 lines
531 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft.AspNetCore": "Warning"
|
|
//"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
}
|
|
},
|
|
"Kestrel": {
|
|
"EndPoints": {
|
|
"Http": {
|
|
"Url": "http://+:5002"
|
|
}
|
|
},
|
|
"Limits": {
|
|
"MaxRequestBodySize": 52428800 //50MB (50 * 1024 * 1024)
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
} |