You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
523 lines
28 KiB
523 lines
28 KiB
syntax = "proto3"; |
|
|
|
package envoy.config.core.v3; |
|
|
|
import "envoy/config/core/v3/extension.proto"; |
|
import "envoy/type/v3/percent.proto"; |
|
|
|
import "google/protobuf/duration.proto"; |
|
import "google/protobuf/wrappers.proto"; |
|
|
|
import "xds/annotations/v3/status.proto"; |
|
|
|
import "envoy/annotations/deprecation.proto"; |
|
import "udpa/annotations/status.proto"; |
|
import "udpa/annotations/versioning.proto"; |
|
import "validate/validate.proto"; |
|
|
|
option java_package = "io.envoyproxy.envoy.config.core.v3"; |
|
option java_outer_classname = "ProtocolProto"; |
|
option java_multiple_files = true; |
|
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
|
|
|
// [#protodoc-title: Protocol options] |
|
|
|
// [#not-implemented-hide:] |
|
message TcpProtocolOptions { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.TcpProtocolOptions"; |
|
} |
|
|
|
// QUIC protocol options which apply to both downstream and upstream connections. |
|
message QuicProtocolOptions { |
|
// Maximum number of streams that the client can negotiate per connection. 100 |
|
// if not specified. |
|
google.protobuf.UInt32Value max_concurrent_streams = 1; |
|
|
|
// `Initial stream-level flow-control receive window |
|
// <https://tools.ietf.org/html/draft-ietf-quic-transport-34#section-4.1>`_ size. Valid values range from |
|
// 1 to 16777216 (2^24, maximum supported by QUICHE) and defaults to 65536 (2^16). |
|
// |
|
// NOTE: 16384 (2^14) is the minimum window size supported in Google QUIC. If configured smaller than it, we will use 16384 instead. |
|
// QUICHE IETF Quic implementation supports 1 bytes window. We only support increasing the default window size now, so it's also the minimum. |
|
// |
|
// This field also acts as a soft limit on the number of bytes Envoy will buffer per-stream in the |
|
// QUIC stream send and receive buffers. Once the buffer reaches this pointer, watermark callbacks will fire to |
|
// stop the flow of data to the stream buffers. |
|
google.protobuf.UInt32Value initial_stream_window_size = 2 |
|
[(validate.rules).uint32 = {lte: 16777216 gte: 1}]; |
|
|
|
// Similar to *initial_stream_window_size*, but for connection-level |
|
// flow-control. Valid values rage from 1 to 25165824 (24MB, maximum supported by QUICHE) and defaults to 65536 (2^16). |
|
// window. Currently, this has the same minimum/default as *initial_stream_window_size*. |
|
// |
|
// NOTE: 16384 (2^14) is the minimum window size supported in Google QUIC. We only support increasing the default |
|
// window size now, so it's also the minimum. |
|
google.protobuf.UInt32Value initial_connection_window_size = 3 |
|
[(validate.rules).uint32 = {lte: 25165824 gte: 1}]; |
|
} |
|
|
|
message UpstreamHttpProtocolOptions { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.UpstreamHttpProtocolOptions"; |
|
|
|
// Set transport socket `SNI <https://en.wikipedia.org/wiki/Server_Name_Indication>`_ for new |
|
// upstream connections based on the downstream HTTP host/authority header or any other arbitrary |
|
// header when :ref:`override_auto_sni_header <envoy_v3_api_field_config.core.v3.UpstreamHttpProtocolOptions.override_auto_sni_header>` |
|
// is set, as seen by the :ref:`router filter <config_http_filters_router>`. |
|
bool auto_sni = 1; |
|
|
|
// Automatic validate upstream presented certificate for new upstream connections based on the |
|
// downstream HTTP host/authority header or any other arbitrary header when :ref:`override_auto_sni_header <envoy_v3_api_field_config.core.v3.UpstreamHttpProtocolOptions.override_auto_sni_header>` |
|
// is set, as seen by the :ref:`router filter <config_http_filters_router>`. |
|
// This field is intended to be set with `auto_sni` field. |
|
bool auto_san_validation = 2; |
|
|
|
// An optional alternative to the host/authority header to be used for setting the SNI value. |
|
// It should be a valid downstream HTTP header, as seen by the |
|
// :ref:`router filter <config_http_filters_router>`. |
|
// If unset, host/authority header will be used for populating the SNI. If the specified header |
|
// is not found or the value is empty, host/authority header will be used instead. |
|
// This field is intended to be set with `auto_sni` and/or `auto_san_validation` fields. |
|
// If none of these fields are set then setting this would be a no-op. |
|
string override_auto_sni_header = 3 |
|
[(validate.rules).string = {well_known_regex: HTTP_HEADER_NAME ignore_empty: true}]; |
|
} |
|
|
|
// Configures the alternate protocols cache which tracks alternate protocols that can be used to |
|
// make an HTTP connection to an origin server. See https://tools.ietf.org/html/rfc7838 for |
|
// HTTP Alternative Services and https://datatracker.ietf.org/doc/html/draft-ietf-dnsop-svcb-https-04 |
|
// for the "HTTPS" DNS resource record. |
|
message AlternateProtocolsCacheOptions { |
|
// The name of the cache. Multiple named caches allow independent alternate protocols cache |
|
// configurations to operate within a single Envoy process using different configurations. All |
|
// alternate protocols cache options with the same name *must* be equal in all fields when |
|
// referenced from different configuration components. Configuration will fail to load if this is |
|
// not the case. |
|
string name = 1 [(validate.rules).string = {min_len: 1}]; |
|
|
|
// The maximum number of entries that the cache will hold. If not specified defaults to 1024. |
|
// |
|
// .. note: |
|
// |
|
// The implementation is approximate and enforced independently on each worker thread, thus |
|
// it is possible for the maximum entries in the cache to go slightly above the configured |
|
// value depending on timing. This is similar to how other circuit breakers work. |
|
google.protobuf.UInt32Value max_entries = 2 [(validate.rules).uint32 = {gt: 0}]; |
|
|
|
// Allows configuring a persistent |
|
// :ref:`key value store <envoy_v3_api_msg_config.common.key_value.v3.KeyValueStoreConfig>` to flush |
|
// alternate protocols entries to disk. |
|
// This function is currently only supported if concurrency is 1 |
|
TypedExtensionConfig key_value_store_config = 3; |
|
} |
|
|
|
// [#next-free-field: 7] |
|
message HttpProtocolOptions { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.HttpProtocolOptions"; |
|
|
|
// Action to take when Envoy receives client request with header names containing underscore |
|
// characters. |
|
// Underscore character is allowed in header names by the RFC-7230 and this behavior is implemented |
|
// as a security measure due to systems that treat '_' and '-' as interchangeable. Envoy by default allows client request headers with underscore |
|
// characters. |
|
enum HeadersWithUnderscoresAction { |
|
// Allow headers with underscores. This is the default behavior. |
|
ALLOW = 0; |
|
|
|
// Reject client request. HTTP/1 requests are rejected with the 400 status. HTTP/2 requests |
|
// end with the stream reset. The "httpN.requests_rejected_with_underscores_in_headers" counter |
|
// is incremented for each rejected request. |
|
REJECT_REQUEST = 1; |
|
|
|
// Drop the header with name containing underscores. The header is dropped before the filter chain is |
|
// invoked and as such filters will not see dropped headers. The |
|
// "httpN.dropped_headers_with_underscores" is incremented for each dropped header. |
|
DROP_HEADER = 2; |
|
} |
|
|
|
// The idle timeout for connections. The idle timeout is defined as the |
|
// period in which there are no active requests. When the |
|
// idle timeout is reached the connection will be closed. If the connection is an HTTP/2 |
|
// downstream connection a drain sequence will occur prior to closing the connection, see |
|
// :ref:`drain_timeout |
|
// <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.drain_timeout>`. |
|
// Note that request based timeouts mean that HTTP/2 PINGs will not keep the connection alive. |
|
// If not specified, this defaults to 1 hour. To disable idle timeouts explicitly set this to 0. |
|
// |
|
// .. warning:: |
|
// Disabling this timeout has a highly likelihood of yielding connection leaks due to lost TCP |
|
// FIN packets, etc. |
|
// |
|
// If the :ref:`overload action <config_overload_manager_overload_actions>` "envoy.overload_actions.reduce_timeouts" |
|
// is configured, this timeout is scaled for downstream connections according to the value for |
|
// :ref:`HTTP_DOWNSTREAM_CONNECTION_IDLE <envoy_v3_api_enum_value_config.overload.v3.ScaleTimersOverloadActionConfig.TimerType.HTTP_DOWNSTREAM_CONNECTION_IDLE>`. |
|
google.protobuf.Duration idle_timeout = 1; |
|
|
|
// The maximum duration of a connection. The duration is defined as a period since a connection |
|
// was established. If not set, there is no max duration. When max_connection_duration is reached |
|
// and if there are no active streams, the connection will be closed. If there are any active streams, |
|
// the drain sequence will kick-in, and the connection will be force-closed after the drain period. |
|
// See :ref:`drain_timeout |
|
// <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.drain_timeout>`. |
|
// Note: This feature is not yet implemented for the upstream connections. |
|
google.protobuf.Duration max_connection_duration = 3; |
|
|
|
// The maximum number of headers. If unconfigured, the default |
|
// maximum number of request headers allowed is 100. Requests that exceed this limit will receive |
|
// a 431 response for HTTP/1.x and cause a stream reset for HTTP/2. |
|
google.protobuf.UInt32Value max_headers_count = 2 [(validate.rules).uint32 = {gte: 1}]; |
|
|
|
// Total duration to keep alive an HTTP request/response stream. If the time limit is reached the stream will be |
|
// reset independent of any other timeouts. If not specified, this value is not set. |
|
google.protobuf.Duration max_stream_duration = 4; |
|
|
|
// Action to take when a client request with a header name containing underscore characters is received. |
|
// If this setting is not specified, the value defaults to ALLOW. |
|
// Note: upstream responses are not affected by this setting. |
|
HeadersWithUnderscoresAction headers_with_underscores_action = 5; |
|
|
|
// Optional maximum requests for both upstream and downstream connections. |
|
// If not specified, there is no limit. |
|
// Setting this parameter to 1 will effectively disable keep alive. |
|
// For HTTP/2 and HTTP/3, due to concurrent stream processing, the limit is approximate. |
|
google.protobuf.UInt32Value max_requests_per_connection = 6; |
|
} |
|
|
|
// [#next-free-field: 8] |
|
message Http1ProtocolOptions { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.Http1ProtocolOptions"; |
|
|
|
// [#next-free-field: 9] |
|
message HeaderKeyFormat { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.Http1ProtocolOptions.HeaderKeyFormat"; |
|
|
|
message ProperCaseWords { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.Http1ProtocolOptions.HeaderKeyFormat.ProperCaseWords"; |
|
} |
|
|
|
oneof header_format { |
|
option (validate.required) = true; |
|
|
|
// Formats the header by proper casing words: the first character and any character following |
|
// a special character will be capitalized if it's an alpha character. For example, |
|
// "content-type" becomes "Content-Type", and "foo$b#$are" becomes "Foo$B#$Are". |
|
// Note that while this results in most headers following conventional casing, certain headers |
|
// are not covered. For example, the "TE" header will be formatted as "Te". |
|
ProperCaseWords proper_case_words = 1; |
|
|
|
// Configuration for stateful formatter extensions that allow using received headers to |
|
// affect the output of encoding headers. E.g., preserving case during proxying. |
|
// [#extension-category: envoy.http.stateful_header_formatters] |
|
TypedExtensionConfig stateful_formatter = 8; |
|
} |
|
} |
|
|
|
// Handle HTTP requests with absolute URLs in the requests. These requests |
|
// are generally sent by clients to forward/explicit proxies. This allows clients to configure |
|
// envoy as their HTTP proxy. In Unix, for example, this is typically done by setting the |
|
// *http_proxy* environment variable. |
|
google.protobuf.BoolValue allow_absolute_url = 1; |
|
|
|
// Handle incoming HTTP/1.0 and HTTP 0.9 requests. |
|
// This is off by default, and not fully standards compliant. There is support for pre-HTTP/1.1 |
|
// style connect logic, dechunking, and handling lack of client host iff |
|
// *default_host_for_http_10* is configured. |
|
bool accept_http_10 = 2; |
|
|
|
// A default host for HTTP/1.0 requests. This is highly suggested if *accept_http_10* is true as |
|
// Envoy does not otherwise support HTTP/1.0 without a Host header. |
|
// This is a no-op if *accept_http_10* is not true. |
|
string default_host_for_http_10 = 3; |
|
|
|
// Describes how the keys for response headers should be formatted. By default, all header keys |
|
// are lower cased. |
|
HeaderKeyFormat header_key_format = 4; |
|
|
|
// Enables trailers for HTTP/1. By default the HTTP/1 codec drops proxied trailers. |
|
// |
|
// .. attention:: |
|
// |
|
// Note that this only happens when Envoy is chunk encoding which occurs when: |
|
// - The request is HTTP/1.1. |
|
// - Is neither a HEAD only request nor a HTTP Upgrade. |
|
// - Not a response to a HEAD request. |
|
// - The content length header is not present. |
|
bool enable_trailers = 5; |
|
|
|
// Allows Envoy to process requests/responses with both `Content-Length` and `Transfer-Encoding` |
|
// headers set. By default such messages are rejected, but if option is enabled - Envoy will |
|
// remove Content-Length header and process message. |
|
// See `RFC7230, sec. 3.3.3 <https://tools.ietf.org/html/rfc7230#section-3.3.3>` for details. |
|
// |
|
// .. attention:: |
|
// Enabling this option might lead to request smuggling vulnerability, especially if traffic |
|
// is proxied via multiple layers of proxies. |
|
bool allow_chunked_length = 6; |
|
|
|
// Allows invalid HTTP messaging. When this option is false, then Envoy will terminate |
|
// HTTP/1.1 connections upon receiving an invalid HTTP message. However, |
|
// when this option is true, then Envoy will leave the HTTP/1.1 connection |
|
// open where possible. |
|
// If set, this overrides any HCM :ref:`stream_error_on_invalid_http_messaging |
|
// <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.stream_error_on_invalid_http_message>`. |
|
google.protobuf.BoolValue override_stream_error_on_invalid_http_message = 7; |
|
} |
|
|
|
message KeepaliveSettings { |
|
// Send HTTP/2 PING frames at this period, in order to test that the connection is still alive. |
|
// If this is zero, interval PINGs will not be sent. |
|
google.protobuf.Duration interval = 1 [(validate.rules).duration = {gte {nanos: 1000000}}]; |
|
|
|
// How long to wait for a response to a keepalive PING. If a response is not received within this |
|
// time period, the connection will be aborted. |
|
google.protobuf.Duration timeout = 2 [(validate.rules).duration = { |
|
required: true |
|
gte {nanos: 1000000} |
|
}]; |
|
|
|
// A random jitter amount as a percentage of interval that will be added to each interval. |
|
// A value of zero means there will be no jitter. |
|
// The default value is 15%. |
|
type.v3.Percent interval_jitter = 3; |
|
|
|
// If the connection has been idle for this duration, send a HTTP/2 ping ahead |
|
// of new stream creation, to quickly detect dead connections. |
|
// If this is zero, this type of PING will not be sent. |
|
// If an interval ping is outstanding, a second ping will not be sent as the |
|
// interval ping will determine if the connection is dead. |
|
google.protobuf.Duration connection_idle_interval = 4 |
|
[(validate.rules).duration = {gte {nanos: 1000000}}]; |
|
} |
|
|
|
// [#next-free-field: 16] |
|
message Http2ProtocolOptions { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.Http2ProtocolOptions"; |
|
|
|
// Defines a parameter to be sent in the SETTINGS frame. |
|
// See `RFC7540, sec. 6.5.1 <https://tools.ietf.org/html/rfc7540#section-6.5.1>`_ for details. |
|
message SettingsParameter { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.Http2ProtocolOptions.SettingsParameter"; |
|
|
|
// The 16 bit parameter identifier. |
|
google.protobuf.UInt32Value identifier = 1 [ |
|
(validate.rules).uint32 = {lte: 65535 gte: 0}, |
|
(validate.rules).message = {required: true} |
|
]; |
|
|
|
// The 32 bit parameter value. |
|
google.protobuf.UInt32Value value = 2 [(validate.rules).message = {required: true}]; |
|
} |
|
|
|
// `Maximum table size <https://httpwg.org/specs/rfc7541.html#rfc.section.4.2>`_ |
|
// (in octets) that the encoder is permitted to use for the dynamic HPACK table. Valid values |
|
// range from 0 to 4294967295 (2^32 - 1) and defaults to 4096. 0 effectively disables header |
|
// compression. |
|
google.protobuf.UInt32Value hpack_table_size = 1; |
|
|
|
// `Maximum concurrent streams <https://httpwg.org/specs/rfc7540.html#rfc.section.5.1.2>`_ |
|
// allowed for peer on one HTTP/2 connection. Valid values range from 1 to 2147483647 (2^31 - 1) |
|
// and defaults to 2147483647. |
|
// |
|
// For upstream connections, this also limits how many streams Envoy will initiate concurrently |
|
// on a single connection. If the limit is reached, Envoy may queue requests or establish |
|
// additional connections (as allowed per circuit breaker limits). |
|
// |
|
// This acts as an upper bound: Envoy will lower the max concurrent streams allowed on a given |
|
// connection based on upstream settings. Config dumps will reflect the configured upper bound, |
|
// not the per-connection negotiated limits. |
|
google.protobuf.UInt32Value max_concurrent_streams = 2 |
|
[(validate.rules).uint32 = {lte: 2147483647 gte: 1}]; |
|
|
|
// `Initial stream-level flow-control window |
|
// <https://httpwg.org/specs/rfc7540.html#rfc.section.6.9.2>`_ size. Valid values range from 65535 |
|
// (2^16 - 1, HTTP/2 default) to 2147483647 (2^31 - 1, HTTP/2 maximum) and defaults to 268435456 |
|
// (256 * 1024 * 1024). |
|
// |
|
// NOTE: 65535 is the initial window size from HTTP/2 spec. We only support increasing the default |
|
// window size now, so it's also the minimum. |
|
// |
|
// This field also acts as a soft limit on the number of bytes Envoy will buffer per-stream in the |
|
// HTTP/2 codec buffers. Once the buffer reaches this pointer, watermark callbacks will fire to |
|
// stop the flow of data to the codec buffers. |
|
google.protobuf.UInt32Value initial_stream_window_size = 3 |
|
[(validate.rules).uint32 = {lte: 2147483647 gte: 65535}]; |
|
|
|
// Similar to *initial_stream_window_size*, but for connection-level flow-control |
|
// window. Currently, this has the same minimum/maximum/default as *initial_stream_window_size*. |
|
google.protobuf.UInt32Value initial_connection_window_size = 4 |
|
[(validate.rules).uint32 = {lte: 2147483647 gte: 65535}]; |
|
|
|
// Allows proxying Websocket and other upgrades over H2 connect. |
|
bool allow_connect = 5; |
|
|
|
// [#not-implemented-hide:] Hiding until envoy has full metadata support. |
|
// Still under implementation. DO NOT USE. |
|
// |
|
// Allows metadata. See [metadata |
|
// docs](https://github.com/envoyproxy/envoy/blob/main/source/docs/h2_metadata.md) for more |
|
// information. |
|
bool allow_metadata = 6; |
|
|
|
// Limit the number of pending outbound downstream frames of all types (frames that are waiting to |
|
// be written into the socket). Exceeding this limit triggers flood mitigation and connection is |
|
// terminated. The ``http2.outbound_flood`` stat tracks the number of terminated connections due |
|
// to flood mitigation. The default limit is 10000. |
|
// NOTE: flood and abuse mitigation for upstream connections is presently enabled by the |
|
// `envoy.reloadable_features.upstream_http2_flood_checks` flag. |
|
google.protobuf.UInt32Value max_outbound_frames = 7 [(validate.rules).uint32 = {gte: 1}]; |
|
|
|
// Limit the number of pending outbound downstream frames of types PING, SETTINGS and RST_STREAM, |
|
// preventing high memory utilization when receiving continuous stream of these frames. Exceeding |
|
// this limit triggers flood mitigation and connection is terminated. The |
|
// ``http2.outbound_control_flood`` stat tracks the number of terminated connections due to flood |
|
// mitigation. The default limit is 1000. |
|
// NOTE: flood and abuse mitigation for upstream connections is presently enabled by the |
|
// `envoy.reloadable_features.upstream_http2_flood_checks` flag. |
|
google.protobuf.UInt32Value max_outbound_control_frames = 8 [(validate.rules).uint32 = {gte: 1}]; |
|
|
|
// Limit the number of consecutive inbound frames of types HEADERS, CONTINUATION and DATA with an |
|
// empty payload and no end stream flag. Those frames have no legitimate use and are abusive, but |
|
// might be a result of a broken HTTP/2 implementation. The `http2.inbound_empty_frames_flood`` |
|
// stat tracks the number of connections terminated due to flood mitigation. |
|
// Setting this to 0 will terminate connection upon receiving first frame with an empty payload |
|
// and no end stream flag. The default limit is 1. |
|
// NOTE: flood and abuse mitigation for upstream connections is presently enabled by the |
|
// `envoy.reloadable_features.upstream_http2_flood_checks` flag. |
|
google.protobuf.UInt32Value max_consecutive_inbound_frames_with_empty_payload = 9; |
|
|
|
// Limit the number of inbound PRIORITY frames allowed per each opened stream. If the number |
|
// of PRIORITY frames received over the lifetime of connection exceeds the value calculated |
|
// using this formula:: |
|
// |
|
// max_inbound_priority_frames_per_stream * (1 + opened_streams) |
|
// |
|
// the connection is terminated. For downstream connections the `opened_streams` is incremented when |
|
// Envoy receives complete response headers from the upstream server. For upstream connection the |
|
// `opened_streams` is incremented when Envoy send the HEADERS frame for a new stream. The |
|
// ``http2.inbound_priority_frames_flood`` stat tracks |
|
// the number of connections terminated due to flood mitigation. The default limit is 100. |
|
// NOTE: flood and abuse mitigation for upstream connections is presently enabled by the |
|
// `envoy.reloadable_features.upstream_http2_flood_checks` flag. |
|
google.protobuf.UInt32Value max_inbound_priority_frames_per_stream = 10; |
|
|
|
// Limit the number of inbound WINDOW_UPDATE frames allowed per DATA frame sent. If the number |
|
// of WINDOW_UPDATE frames received over the lifetime of connection exceeds the value calculated |
|
// using this formula:: |
|
// |
|
// 5 + 2 * (opened_streams + |
|
// max_inbound_window_update_frames_per_data_frame_sent * outbound_data_frames) |
|
// |
|
// the connection is terminated. For downstream connections the `opened_streams` is incremented when |
|
// Envoy receives complete response headers from the upstream server. For upstream connections the |
|
// `opened_streams` is incremented when Envoy sends the HEADERS frame for a new stream. The |
|
// ``http2.inbound_priority_frames_flood`` stat tracks the number of connections terminated due to |
|
// flood mitigation. The default max_inbound_window_update_frames_per_data_frame_sent value is 10. |
|
// Setting this to 1 should be enough to support HTTP/2 implementations with basic flow control, |
|
// but more complex implementations that try to estimate available bandwidth require at least 2. |
|
// NOTE: flood and abuse mitigation for upstream connections is presently enabled by the |
|
// `envoy.reloadable_features.upstream_http2_flood_checks` flag. |
|
google.protobuf.UInt32Value max_inbound_window_update_frames_per_data_frame_sent = 11 |
|
[(validate.rules).uint32 = {gte: 1}]; |
|
|
|
// Allows invalid HTTP messaging and headers. When this option is disabled (default), then |
|
// the whole HTTP/2 connection is terminated upon receiving invalid HEADERS frame. However, |
|
// when this option is enabled, only the offending stream is terminated. |
|
// |
|
// This is overridden by HCM :ref:`stream_error_on_invalid_http_messaging |
|
// <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.stream_error_on_invalid_http_message>` |
|
// iff present. |
|
// |
|
// This is deprecated in favor of :ref:`override_stream_error_on_invalid_http_message |
|
// <envoy_v3_api_field_config.core.v3.Http2ProtocolOptions.override_stream_error_on_invalid_http_message>` |
|
// |
|
// See `RFC7540, sec. 8.1 <https://tools.ietf.org/html/rfc7540#section-8.1>`_ for details. |
|
bool stream_error_on_invalid_http_messaging = 12 |
|
[deprecated = true, (envoy.annotations.deprecated_at_minor_version) = "3.0"]; |
|
|
|
// Allows invalid HTTP messaging and headers. When this option is disabled (default), then |
|
// the whole HTTP/2 connection is terminated upon receiving invalid HEADERS frame. However, |
|
// when this option is enabled, only the offending stream is terminated. |
|
// |
|
// This overrides any HCM :ref:`stream_error_on_invalid_http_messaging |
|
// <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.stream_error_on_invalid_http_message>` |
|
// |
|
// See `RFC7540, sec. 8.1 <https://tools.ietf.org/html/rfc7540#section-8.1>`_ for details. |
|
google.protobuf.BoolValue override_stream_error_on_invalid_http_message = 14; |
|
|
|
// [#not-implemented-hide:] |
|
// Specifies SETTINGS frame parameters to be sent to the peer, with two exceptions: |
|
// |
|
// 1. SETTINGS_ENABLE_PUSH (0x2) is not configurable as HTTP/2 server push is not supported by |
|
// Envoy. |
|
// |
|
// 2. SETTINGS_ENABLE_CONNECT_PROTOCOL (0x8) is only configurable through the named field |
|
// 'allow_connect'. |
|
// |
|
// Note that custom parameters specified through this field can not also be set in the |
|
// corresponding named parameters: |
|
// |
|
// .. code-block:: text |
|
// |
|
// ID Field Name |
|
// ---------------- |
|
// 0x1 hpack_table_size |
|
// 0x3 max_concurrent_streams |
|
// 0x4 initial_stream_window_size |
|
// |
|
// Collisions will trigger config validation failure on load/update. Likewise, inconsistencies |
|
// between custom parameters with the same identifier will trigger a failure. |
|
// |
|
// See `IANA HTTP/2 Settings |
|
// <https://www.iana.org/assignments/http2-parameters/http2-parameters.xhtml#settings>`_ for |
|
// standardized identifiers. |
|
repeated SettingsParameter custom_settings_parameters = 13; |
|
|
|
// Send HTTP/2 PING frames to verify that the connection is still healthy. If the remote peer |
|
// does not respond within the configured timeout, the connection will be aborted. |
|
KeepaliveSettings connection_keepalive = 15; |
|
} |
|
|
|
// [#not-implemented-hide:] |
|
message GrpcProtocolOptions { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.api.v2.core.GrpcProtocolOptions"; |
|
|
|
Http2ProtocolOptions http2_protocol_options = 1; |
|
} |
|
|
|
// A message which allows using HTTP/3. |
|
// [#next-free-field: 6] |
|
message Http3ProtocolOptions { |
|
QuicProtocolOptions quic_protocol_options = 1; |
|
|
|
// Allows invalid HTTP messaging and headers. When this option is disabled (default), then |
|
// the whole HTTP/3 connection is terminated upon receiving invalid HEADERS frame. However, |
|
// when this option is enabled, only the offending stream is terminated. |
|
// |
|
// If set, this overrides any HCM :ref:`stream_error_on_invalid_http_messaging |
|
// <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.stream_error_on_invalid_http_message>`. |
|
google.protobuf.BoolValue override_stream_error_on_invalid_http_message = 2; |
|
|
|
// Allows proxying Websocket and other upgrades over HTTP/3 CONNECT using |
|
// the header mechanisms from the `HTTP/2 extended connect RFC |
|
// <https://datatracker.ietf.org/doc/html/rfc8441>`_ |
|
// and settings `proposed for HTTP/3 |
|
// <https://datatracker.ietf.org/doc/draft-ietf-httpbis-h3-websockets/>`_ |
|
// Note that HTTP/3 CONNECT is not yet an RFC. |
|
bool allow_extended_connect = 5 [(xds.annotations.v3.field_status).work_in_progress = true]; |
|
} |
|
|
|
// A message to control transformations to the :scheme header |
|
message SchemeHeaderTransformation { |
|
oneof transformation { |
|
// Overwrite any Scheme header with the contents of this string. |
|
string scheme_to_overwrite = 1 [(validate.rules).string = {in: "http" in: "https"}]; |
|
} |
|
}
|
|
|