Files
Leader.TeaShop.SG/bin/appsettings.json
2026-04-17 17:28:37 +08:00

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": "*"
}