Page Contents
Home > @loopback/http-server > HttpServerProperties
HttpServerProperties type
The following are for configuring properties which are directly set on https://nodejs.org/api/http.html#http_class_http_server and https://nodejs.org/api/net.html#net_class_net_server
Signature:
export type HttpServerProperties = Pick<Server, 'keepAliveTimeout' | 'headersTimeout' | 'maxConnections' | 'maxHeadersCount' | 'timeout'>;