|
1 | 1 | { |
| 2 | + "Kestrel": { |
| 3 | + "Limits": { |
| 4 | + "MaxRequestLineSize": 8192, //8 KB |
| 5 | + "RequestHeadersTimeout": "00:00:30", |
| 6 | + "MaxRequestHeaderCount": 100, |
| 7 | + "MaxRequestHeadersTotalSize": 32768, //32 KB |
| 8 | + "MaxRequestBodySize": 30000000, //28.6 MB |
| 9 | + "MaxRequestBufferSize": 1048576, //1 M |
| 10 | + "MaxResponseBufferSize": 65536, //64 KB |
| 11 | + "MinRequestBodyDataRate": { |
| 12 | + "BytesPerSecond": 240, |
| 13 | + "GracePeriod": "00:00:05" |
| 14 | + }, |
| 15 | + "MinResponseDataRate": { |
| 16 | + "BytesPerSecond": 240, |
| 17 | + "GracePeriod": "00:00:05" |
| 18 | + }, |
| 19 | + "KeepAliveTimeout": "00:02:10", |
| 20 | + "MaxConcurrentConnections": null, |
| 21 | + "MaxConcurrentUpgradedConnections": null, |
| 22 | + "Http2": { |
| 23 | + "HeaderTableSize": 4096, |
| 24 | + "InitialConnectionWindowSize": 1048576, |
| 25 | + "InitialStreamWindowSize": 786432, |
| 26 | + "KeepAlivePingDelay": "10675199.02:48:05.4775807", //Timespan.MaxValue or -00:00:00.0010000 |
| 27 | + "KeepAlivePingTimeout": "00:00:20", |
| 28 | + "MaxFrameSize": 16384, |
| 29 | + "MaxRequestHeaderFieldSize": 32768, |
| 30 | + "MaxStreamsPerConnection": 100 |
| 31 | + }, |
| 32 | + "Http3": { |
| 33 | + "MaxRequestHeaderFieldSize": 32768 |
| 34 | + } |
| 35 | + } |
| 36 | + }, |
2 | 37 | "Logging": { |
3 | 38 | "LogLevel": { |
4 | 39 | "Default": "Information", |
|
0 commit comments