The Kestrel version uses ASP.NET Core 6.0 and you can find all the information on the following link:
https://learn.microsoft.com/en-us/aspnet/core/fundamentals/servers/kestrel?view=aspnetcore-6.0

Field |
Type |
Description |
MaxConcurrentConnections |
Number |
Gets or sets the maximum number of open connections. When set to null, the number of connections is unlimited. Defaults to 100. |
MaxConcurrentUpgradedConnections |
Number |
Gets or sets the maximum number of open, upgraded connections. When set to null, the number of upgraded connections is unlimited. An upgraded connection is one that has been switched from HTTP to another protocol, such as WebSockets.Defaults to 100. |
MinRequestBodyDataRate |
Number |
Gets or sets the request body minimum data rate in bytes/second. Setting this property to null indicates no minimum data rate should be enforced. This limit has no effect on upgraded connections which are always unlimited. Defaults to 100
|
KeepAliveTimeout |
Number |
Gets or sets the keep-alive timeout. Defaults to 130 seconds. |
Http / Https |
Button |
The listening urls where LinkarWS will receive the requests from. More info in https://learn.microsoft.com/en-us/aspnet/core/fundamentals/servers/kestrel/endpoints?view=aspnetcore-6.0 |
Protocols |
Required |
Protocols configures the allowed HTTP protocols. |
pfx Certificate Path |
Required with HTTPS |
HTTPS mode requires a certificate with pfx extension. The complete path is defined here. |
Certificate Password |
In HTTPS mode, the password of the Certificate is defined here. |