Skip to content

Variables

General

ASPNETCORE_ENVIRONMENT

If set to Development, more detailed exception pages will be shown.

Server Settings

SERVER_HTTP_VERSION

Minimum version on server interface. Valid values are 1.0, 1.1, 2.0 or 3.0.

Default is 2.0

SERVER_HTTP_VERSION_POLICY

Determines on how HTTP version is handled. Valid values are Exact, ExactOrHigher, or ExactAndLower.

Default is ExactOrHigher.

SERVER_HTTP_SECURE

If True, HTTPS will be used, otherwise plain-text.

Default is True.

SERVER_MIRROR_PLAIN_FILE

Plain-text file to which decrypted copy of data will be written.

SERVER_MIRROR_PCAP_FILE

PCap file to which decrypted copy of data will be written.

SERVER_OPTIONS_HTTP_KEEPALIVE_TIMEOUT

The keep-alive timeout, in seconds. To disable, set to 0.

Default value is 120.

SERVER_OPTIONS_HTTP_MAX_CONCURRENT_CONNECTIONS

Tthe maximum number of open connections.

Default value is 100.

SERVER_OPTIONS_HTTP_MAX_CONCURRENT_UPGRADED_CONNECTIONS

The maximum number of open, upgraded connections.

Default value is 100.

SERVER_OPTIONS_HTTP_MAX_REQUEST_BODY_SIZE

The maximum allowed size of any request body in bytes.

Default value is 100,000,000.

SERVER_OPTIONS_HTTP_REQUEST_HEADERS_TIMEOUT

The maximum amount of time the server spends receiving request headers, in seconds.

Default value is 60.

SERVER_OPTIONS_HTTP2_HEADER_TABLE_SIZE

The size of the header compression tables, in octets, the HPACK encoder and decoder on the server can use (aka SETTINGS_HEADER_TABLE_SIZE). To disable header compression, use 0.

Default value is 4,096.

Valid only for HTTP 2.0 and higher connections.

SERVER_OPTIONS_HTTP2_MAX_CONCURRENT_STREAMS

The number of concurrent request streams per HTTP/2 connection. Excess streams are refused (aka SETTINGS_MAX_CONCURRENT_STREAMS).

Default value is 100.

Valid only for HTTP 2.0 and higher connections.

SERVER_OPTIONS_HTTP2_INITIAL_CONNECTION_WINDOW_SIZE

How much request body data the server is willing to receive and buffer at a time per stream (aka SETTINGS_INITIAL_WINDOW_SIZE).

Default value is 98,304.

Valid only for HTTP 2.0 and higher connections.

SERVER_OPTIONS_HTTP2_MAX_FRAME_SIZE

The size of the largest frame payload that is allowed to be received (aka SETTINGS_MAX_FRAME_SIZE).

Default value is 16,384.

Valid only for HTTP 2.0 and higher connections.

SERVER_OPTIONS_HTTP2_MAX_HEADER_LIST_SIZE

The size of the maximum allowed size of a request header field sequence (aka SETTINGS_MAX_HEADER_LIST_SIZE)

Default value is 8,192.

Valid only for HTTP 2.0 and higher connections.

SERVER_OPTIONS_HTTP2_INITIAL_CONNECTION_WINDOW_SIZE

How much request body data the server is willing to receive and buffer at a time, aggregated across all steams and per connection.

Default value is 131,072.

Valid only for HTTP 2.0 and higher connections.

SERVER_OPTIONS_HTTP2_KEEPALIVE_PING_DELAY

The ping interval in seconds. To disable, set to 0.

Default value is 30.

Valid only for HTTP 2.0 and higher connections.

SERVER_OPTIONS_HTTP2_KEEPALIVE_PING_TIMEOUT

The ping timeout after which connection is closed, in seconds. To disable, set to 0.

Default value is 60.

Valid only for HTTP 2.0 and higher connections.