Description
HTTP/1.1 server configuration.
Usages
Configuration options
| Key | Kind | Type | Default Value | Description |
|---|---|---|---|---|
continue-immediately | VALUE | Boolean | false | When true WebServer answers to expect continue with 100 continue immediately, not waiting for user to actually request the data |
max-buffered-entity-size | VALUE | i.h.c.Size | 64 KB | Configure the maximum size allowed for an entity that can be explicitly buffered by the application by calling io.helidon.http.media.ReadableEntity#buffer |
max-headers-size | VALUE | Integer | 16384 | Maximal size of received headers in bytes |
max-prologue-length | VALUE | Integer | 4096 | Maximal size of received HTTP prologue (GET /path HTTP/1.1) |
recv-log | VALUE | Boolean | true | Logging of received packets |
requested-uri-discovery | VALUE | i.h.h.RequestedUriDiscoveryContext | Requested URI discovery settings | |
send-keep-alive-header | VALUE | Boolean | true | Whether to send the default Connection: keep-alive response header for persistent HTTP/1.1 connections |
send-log | VALUE | Boolean | true | Logging of sent packets |
validate-path | VALUE | Boolean | true | If set to false, any path is accepted (even containing illegal characters) |
validate-prologue | VALUE | Boolean | true | If set to false, any query and fragment is accepted (even containing illegal characters) |
validate-request-headers | VALUE | Boolean | true | Whether to validate headers |
validate-response-headers | VALUE | Boolean | false | Whether to validate headers |
Deprecated Options
| Key | Kind | Type | Default Value | Description |
|---|---|---|---|---|
validate-request-host-header | VALUE | Boolean | true | Request host header validation |
See the manifest for all available types.