diff --git a/configs/encapsulate_in_http1_connect.yaml b/configs/encapsulate_in_http1_connect.yaml index f8f9a6bc4a66..bf6cb6ad127f 100644 --- a/configs/encapsulate_in_http1_connect.yaml +++ b/configs/encapsulate_in_http1_connect.yaml @@ -1,6 +1,7 @@ # This configuration takes incoming data on port 10000 and encapsulates it in a CONNECT # request which is sent upstream port 10001. -# It can be used to test TCP tunneling as described in docs/root/intro/arch_overview/http/upgrades.rst +# It can be used to test TCP tunneling as described in +# https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/upgrades # and running `curl -x 127.0.0.1:10000 https://www.google.com` admin: diff --git a/configs/encapsulate_in_http2_connect.yaml b/configs/encapsulate_in_http2_connect.yaml index 55629ef0df2a..75a5d5fcd295 100644 --- a/configs/encapsulate_in_http2_connect.yaml +++ b/configs/encapsulate_in_http2_connect.yaml @@ -1,6 +1,7 @@ # This configuration takes incoming data on port 10000 and encapsulates it in a CONNECT # request which is sent upstream port 10001. -# It can be used to test TCP tunneling as described in docs/root/intro/arch_overview/http/upgrades.rst +# It can be used to test TCP tunneling as described in +# https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/upgrades # and running `curl -x 127.0.0.1:10000 https://www.google.com` admin: diff --git a/configs/encapsulate_in_http2_post.yaml b/configs/encapsulate_in_http2_post.yaml index d3979c393ad7..d24737bbfdd4 100644 --- a/configs/encapsulate_in_http2_post.yaml +++ b/configs/encapsulate_in_http2_post.yaml @@ -1,6 +1,7 @@ # This configuration takes incoming data on port 10000 and encapsulates it in a POST # request which is sent upstream port 10001. -# It can be used to test TCP tunneling as described in docs/root/intro/arch_overview/http/upgrades.rst +# It can be used to test TCP tunneling as described in +# https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/upgrades # and running `curl -x 127.0.0.1:10000 https://www.google.com` admin: diff --git a/configs/terminate_http1_connect.yaml b/configs/terminate_http1_connect.yaml index ca9e25e72af6..ee067732be32 100644 --- a/configs/terminate_http1_connect.yaml +++ b/configs/terminate_http1_connect.yaml @@ -1,5 +1,6 @@ # This configuration terminates a CONNECT request and sends the CONNECT payload upstream. -# It can be used to test TCP tunneling as described in docs/root/intro/arch_overview/http/upgrades.rst +# It can be used to test TCP tunneling as described in +# https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/upgrades # or used to test CONNECT directly, by running `curl -k -v -x 127.0.0.1:10001 https://www.google.com` admin: address: diff --git a/configs/terminate_http2_connect.yaml b/configs/terminate_http2_connect.yaml index 474d76018000..349888beed89 100644 --- a/configs/terminate_http2_connect.yaml +++ b/configs/terminate_http2_connect.yaml @@ -1,5 +1,6 @@ # This configuration terminates a CONNECT request and sends the CONNECT payload upstream. -# It can be used to test TCP tunneling as described in docs/root/intro/arch_overview/http/upgrades.rst +# It can be used to test TCP tunneling as described in +# https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/upgrades # or used to test CONNECT directly, by running `curl -k -v -x 127.0.0.1:10001 https://www.google.com` admin: address: diff --git a/configs/terminate_http2_post.yaml b/configs/terminate_http2_post.yaml index d2ede127da35..5401f43c78ef 100644 --- a/configs/terminate_http2_post.yaml +++ b/configs/terminate_http2_post.yaml @@ -1,5 +1,6 @@ # This configuration terminates a POST request and sends the POST payload upstream. -# It can be used to test TCP tunneling as described in docs/root/intro/arch_overview/http/upgrades.rst +# It can be used to test TCP tunneling as described in +# https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/http/upgrades # or used to test POST directly, by running `curl -k -v -x 127.0.0.1:10001 https://www.google.com` admin: address: diff --git a/contrib/kafka/filters/network/source/BUILD b/contrib/kafka/filters/network/source/BUILD index b90a1598249e..e0bf9ebed798 100644 --- a/contrib/kafka/filters/network/source/BUILD +++ b/contrib/kafka/filters/network/source/BUILD @@ -12,7 +12,7 @@ licenses(["notice"]) # Apache 2 envoy_contrib_package() # Kafka network filter. -# Broker filter public docs: docs/root/configuration/network_filters/kafka_broker_filter.rst +# Broker filter public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/kafka_broker_filter envoy_cc_contrib_extension( name = "kafka_broker_config_lib", diff --git a/contrib/kafka/filters/network/source/mesh/BUILD b/contrib/kafka/filters/network/source/mesh/BUILD index 4d1481f89fcd..b8ad3d39eecf 100644 --- a/contrib/kafka/filters/network/source/mesh/BUILD +++ b/contrib/kafka/filters/network/source/mesh/BUILD @@ -11,7 +11,7 @@ licenses(["notice"]) # Apache 2 envoy_contrib_package() # Kafka-mesh network filter. -# Mesh filter public docs: docs/root/configuration/listeners/network_filters/kafka_mesh_filter.rst +# Mesh filter public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/kafka_mesh_filter envoy_cc_contrib_extension( name = "config_lib", diff --git a/contrib/mysql_proxy/filters/network/source/BUILD b/contrib/mysql_proxy/filters/network/source/BUILD index 5b219fae1d39..5bb9bf73dc62 100644 --- a/contrib/mysql_proxy/filters/network/source/BUILD +++ b/contrib/mysql_proxy/filters/network/source/BUILD @@ -10,7 +10,7 @@ licenses(["notice"]) # Apache 2 envoy_contrib_package() # MySQL proxy L7 network filter. -# Public docs: docs/root/configuration/network_filters/mysql_proxy_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/mysql_proxy_filter envoy_cc_library( name = "filter_lib", diff --git a/contrib/postgres_proxy/filters/network/source/BUILD b/contrib/postgres_proxy/filters/network/source/BUILD index 9b0c71cd2898..4fd7bb97717a 100644 --- a/contrib/postgres_proxy/filters/network/source/BUILD +++ b/contrib/postgres_proxy/filters/network/source/BUILD @@ -12,7 +12,7 @@ envoy_contrib_package() #package(default_visibility = ["//visibility:public"]) # PostgresSQL proxy L7 network filter. -# Public docs: docs/root/configuration/network_filters/postgres_proxy_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/postgres_proxy_filter envoy_cc_library( name = "filter", diff --git a/contrib/squash/filters/http/source/BUILD b/contrib/squash/filters/http/source/BUILD index 897149d5137f..29ebb099725e 100644 --- a/contrib/squash/filters/http/source/BUILD +++ b/contrib/squash/filters/http/source/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP filter that implements the Squash microservice debugger -# Public docs: docs/root/configuration/http_filters/squash_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/squash_filter envoy_contrib_package() diff --git a/docs/root/configuration/http/http_filters/_include/composite.yaml b/docs/root/configuration/http/http_filters/_include/composite.yaml index 42949658dfaa..849b1fcedfde 100644 --- a/docs/root/configuration/http/http_filters/_include/composite.yaml +++ b/docs/root/configuration/http/http_filters/_include/composite.yaml @@ -21,7 +21,7 @@ static_resources: domains: ["*"] routes: # NOTE: by default, matching happens based on the gRPC route, and not on the incoming request path. - # Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/http_filters/grpc_json_transcoder_filter#route-configs-for-transcoded-requests + # Reference: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_json_transcoder_filter#route-configs-for-transcoded-requests - match: {prefix: "/helloworld.Greeter"} route: {cluster: grpc, timeout: 60s} http_filters: diff --git a/docs/root/configuration/http/http_filters/_include/grpc-transcoder-filter.yaml b/docs/root/configuration/http/http_filters/_include/grpc-transcoder-filter.yaml index 919d61296e0e..c18e1821f043 100644 --- a/docs/root/configuration/http/http_filters/_include/grpc-transcoder-filter.yaml +++ b/docs/root/configuration/http/http_filters/_include/grpc-transcoder-filter.yaml @@ -21,7 +21,7 @@ static_resources: domains: ["*"] routes: # NOTE: by default, matching happens based on the gRPC route, and not on the incoming request path. - # Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_json_transcoder_filter#route-configs-for-transcoded-requests + # Reference: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_json_transcoder_filter#route-configs-for-transcoded-requests - match: {prefix: "/helloworld.Greeter"} route: {cluster: grpc, timeout: 60s} http_filters: diff --git a/examples/brotli/brotli-envoy.yaml b/examples/brotli/brotli-envoy.yaml index 06db571370c9..581e667a9b58 100644 --- a/examples/brotli/brotli-envoy.yaml +++ b/examples/brotli/brotli-envoy.yaml @@ -47,10 +47,10 @@ static_resources: # $ openssl req -x509 -newkey rsa:2048 -keyout a/brotli-key.pem -out a/brotli-crt.pem -days 3650 -nodes -subj '/CN=brotli' # # Instead of feeding it as an inline_string, certificate pair can also be fed to Envoy - # via filename. Reference: https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. + # via filename. Reference: https://envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. # # Or in a dynamic configuration scenario, certificate pair can be fetched remotely via - # Secret Discovery Service (SDS). Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret. + # Secret Discovery Service (SDS). Reference: https://envoyproxy.io/docs/envoy/latest/configuration/security/secret. - certificate_chain: inline_string: | -----BEGIN CERTIFICATE----- @@ -147,10 +147,10 @@ static_resources: # $ openssl req -x509 -newkey rsa:2048 -keyout a/brotli.pem -out a/brotli-crt.pem -days 3650 -nodes -subj '/CN=brotli' # # Instead of feeding it as an inline_string, certificate pair can also be fed to Envoy - # via filename. Reference: https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. + # via filename. Reference: https://envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. # # Or in a dynamic configuration scenario, certificate pair can be fetched remotely via - # Secret Discovery Service (SDS). Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret. + # Secret Discovery Service (SDS). Reference: https://envoyproxy.io/docs/envoy/latest/configuration/security/secret. - certificate_chain: inline_string: | -----BEGIN CERTIFICATE----- diff --git a/examples/front-proxy/front-envoy.yaml b/examples/front-proxy/front-envoy.yaml index be4367db4b1d..957c69193221 100644 --- a/examples/front-proxy/front-envoy.yaml +++ b/examples/front-proxy/front-envoy.yaml @@ -68,10 +68,10 @@ static_resources: # $ openssl req -x509 -newkey rsa:2048 -keyout a/front-proxy-key.pem -out a/front-proxy-crt.pem -days 3650 -nodes -subj '/CN=front-envoy' # # Instead of feeding it as an inline_string, certificate pair can also be fed to Envoy - # via filename. Reference: https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. + # via filename. Reference: https://envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. # # Or in a dynamic configuration scenario, certificate pair can be fetched remotely via - # Secret Discovery Service (SDS). Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret. + # Secret Discovery Service (SDS). Reference: https://envoyproxy.io/docs/envoy/latest/configuration/security/secret. - certificate_chain: inline_string: | -----BEGIN CERTIFICATE----- diff --git a/examples/tls/envoy-https-http.yaml b/examples/tls/envoy-https-http.yaml index 640b0ca8429d..8b79837662f7 100644 --- a/examples/tls/envoy-https-http.yaml +++ b/examples/tls/envoy-https-http.yaml @@ -34,10 +34,10 @@ static_resources: # $ openssl req -x509 -newkey rsa:2048 -keyout a/front-proxy-key.pem -out a/front-proxy-crt.pem -days 3650 -nodes -subj '/CN=front-envoy' # # Instead of feeding it as an inline_string, certificate pair can also be fed to Envoy - # via filename. Reference: https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. + # via filename. Reference: https://envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. # # Or in a dynamic configuration scenario, certificate pair can be fetched remotely via - # Secret Discovery Service (SDS). Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret. + # Secret Discovery Service (SDS). Reference: https://envoyproxy.io/docs/envoy/latest/configuration/security/secret. - certificate_chain: inline_string: | -----BEGIN CERTIFICATE----- diff --git a/examples/tls/envoy-https-https.yaml b/examples/tls/envoy-https-https.yaml index 13a60d4d9c36..fc2fecb710ff 100644 --- a/examples/tls/envoy-https-https.yaml +++ b/examples/tls/envoy-https-https.yaml @@ -34,10 +34,10 @@ static_resources: # $ openssl req -x509 -newkey rsa:2048 -keyout a/front-proxy-key.pem -out a/front-proxy-crt.pem -days 3650 -nodes -subj '/CN=front-envoy' # # Instead of feeding it as an inline_string, certificate pair can also be fed to Envoy - # via filename. Reference: https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. + # via filename. Reference: https://envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. # # Or in a dynamic configuration scenario, certificate pair can be fetched remotely via - # Secret Discovery Service (SDS). Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret. + # Secret Discovery Service (SDS). Reference: https://envoyproxy.io/docs/envoy/latest/configuration/security/secret. - certificate_chain: inline_string: | -----BEGIN CERTIFICATE----- diff --git a/examples/websocket/envoy-wss.yaml b/examples/websocket/envoy-wss.yaml index f4dee8fd0bd7..4bd536402b0e 100644 --- a/examples/websocket/envoy-wss.yaml +++ b/examples/websocket/envoy-wss.yaml @@ -35,10 +35,10 @@ static_resources: # $ openssl req -x509 -newkey rsa:2048 -keyout a/front-proxy-key.pem -out a/front-proxy-crt.pem -days 3650 -nodes -subj '/CN=front-envoy' # # Instead of feeding it as an inline_string, certificate pair can also be fed to Envoy - # via filename. Reference: https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. + # via filename. Reference: https://envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. # # Or in a dynamic configuration scenario, certificate pair can be fetched remotely via - # Secret Discovery Service (SDS). Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret. + # Secret Discovery Service (SDS). Reference: https://envoyproxy.io/docs/envoy/latest/configuration/security/secret. - certificate_chain: inline_string: | -----BEGIN CERTIFICATE----- diff --git a/examples/win32-front-proxy/front-envoy.yaml b/examples/win32-front-proxy/front-envoy.yaml index 7ef8b6917b06..695dcc325e2d 100644 --- a/examples/win32-front-proxy/front-envoy.yaml +++ b/examples/win32-front-proxy/front-envoy.yaml @@ -68,10 +68,10 @@ static_resources: # $ openssl req -x509 -newkey rsa:2048 -keyout a/front-proxy-key.pem -out a/front-proxy-crt.pem -days 3650 -nodes -subj '/CN=front-envoy' # # Instead of feeding it as an inline_string, certificate pair can also be fed to Envoy - # via filename. Reference: https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. + # via filename. Reference: https://envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/base.proto#config-core-v3-datasource. # # Or in a dynamic configuration scenario, certificate pair can be fetched remotely via - # Secret Discovery Service (SDS). Reference: https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret. + # Secret Discovery Service (SDS). Reference: https://envoyproxy.io/docs/envoy/latest/configuration/security/secret. - certificate_chain: inline_string: | -----BEGIN CERTIFICATE----- diff --git a/source/common/formatter/substitution_formatter.cc b/source/common/formatter/substitution_formatter.cc index 0cc4e370e5b3..48367484d9a9 100644 --- a/source/common/formatter/substitution_formatter.cc +++ b/source/common/formatter/substitution_formatter.cc @@ -310,7 +310,7 @@ void SubstitutionFormatParser::parseCommandHeader(const std::string& token, cons if (!subs.empty()) { throw EnvoyException( // Header format rules support only one alternative header. - // docs/root/configuration/access_log.rst#format-rules + // docs/root/configuration/observability/access_log/access_log.rst#format-rules absl::StrCat("More than 1 alternative header specified in token: ", token)); } diff --git a/source/common/formatter/substitution_formatter.h b/source/common/formatter/substitution_formatter.h index 239700da1723..b5d243c9ff56 100644 --- a/source/common/formatter/substitution_formatter.h +++ b/source/common/formatter/substitution_formatter.h @@ -31,7 +31,7 @@ class SubstitutionFormatParser { * Parse a header format rule of the form: %REQ(X?Y):Z% . * Will populate a main_header and an optional alternative header if specified. * See doc: - * docs/root/configuration/access_log.rst#format-rules + * https://envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/access_log#format-rules */ static void parseCommandHeader(const std::string& token, const size_t start, std::string& main_header, std::string& alternative_header, diff --git a/source/extensions/access_loggers/file/BUILD b/source/extensions/access_loggers/file/BUILD index b0f1c2df0ea6..fb1c03d4acf5 100644 --- a/source/extensions/access_loggers/file/BUILD +++ b/source/extensions/access_loggers/file/BUILD @@ -7,7 +7,7 @@ load( licenses(["notice"]) # Apache 2 # Access log implementation that writes to a file. -# Public docs: docs/root/configuration/access_log.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/access_log envoy_extension_package() diff --git a/source/extensions/common/redis/BUILD b/source/extensions/common/redis/BUILD index 36e05034f57f..3e9ca8cad3d0 100644 --- a/source/extensions/common/redis/BUILD +++ b/source/extensions/common/redis/BUILD @@ -8,7 +8,7 @@ licenses(["notice"]) # Apache 2 # Redis proxy L4 network filter. Implements consistent hashing and observability for large redis # clusters. -# Public docs: docs/root/configuration/network_filters/redis_proxy_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/redis_proxy_filter envoy_extension_package() diff --git a/source/extensions/extensions_metadata.yaml b/source/extensions/extensions_metadata.yaml index 3cf47195acf2..38805cae6376 100644 --- a/source/extensions/extensions_metadata.yaml +++ b/source/extensions/extensions_metadata.yaml @@ -698,17 +698,17 @@ envoy.wasm.runtime.v8: envoy.wasm.runtime.wamr: categories: - envoy.wasm.runtime - security_posture: unknown # "This may never change from unknown until the threat model at https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/threat_model#core-and-extensions is updated to capture additional Wasm runtimes". + security_posture: unknown # "This may never change from unknown until the threat model at https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/threat_model#core-and-extensions is updated to capture additional Wasm runtimes". status: alpha envoy.wasm.runtime.wasmtime: categories: - envoy.wasm.runtime - security_posture: unknown # "This may never change from unknown until the threat model at https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/threat_model#core-and-extensions is updated to capture additional Wasm runtimes". + security_posture: unknown # "This may never change from unknown until the threat model at https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/threat_model#core-and-extensions is updated to capture additional Wasm runtimes". status: alpha envoy.wasm.runtime.wavm: categories: - envoy.wasm.runtime - security_posture: unknown # "This may never change from unknown until the threat model at https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/threat_model#core-and-extensions is updated to capture additional Wasm runtimes". + security_posture: unknown # "This may never change from unknown until the threat model at https://envoyproxy.io/docs/envoy/latest/intro/arch_overview/security/threat_model#core-and-extensions is updated to capture additional Wasm runtimes". status: alpha envoy.watchdog.profile_action: categories: diff --git a/source/extensions/filters/http/adaptive_concurrency/BUILD b/source/extensions/filters/http/adaptive_concurrency/BUILD index 95bafcf6002d..64434ebeae59 100644 --- a/source/extensions/filters/http/adaptive_concurrency/BUILD +++ b/source/extensions/filters/http/adaptive_concurrency/BUILD @@ -9,7 +9,7 @@ licenses(["notice"]) # Apache 2 # HTTP L7 filter that dynamically adjusts the number of allowed concurrent # requests based on sampled latencies. -# Public docs: docs/root/configuration/http_filters/adaptive_concurrency_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/adaptive_concurrency_filter envoy_extension_package() diff --git a/source/extensions/filters/http/admission_control/BUILD b/source/extensions/filters/http/admission_control/BUILD index a687266ec291..c635e415e665 100644 --- a/source/extensions/filters/http/admission_control/BUILD +++ b/source/extensions/filters/http/admission_control/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # HTTP L7 filter that probabilistically rejects requests based on upstream success-rate. -# Public docs: docs/root/configuration/http_filters/admission_control.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/admission_control_filter envoy_extension_package() diff --git a/source/extensions/filters/http/aws_lambda/BUILD b/source/extensions/filters/http/aws_lambda/BUILD index b372c5109300..200a2e573b8d 100644 --- a/source/extensions/filters/http/aws_lambda/BUILD +++ b/source/extensions/filters/http/aws_lambda/BUILD @@ -9,7 +9,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP AWS Lambda filter -# Public docs: docs/root/configuration/http_filters/aws_lambda_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/aws_lambda_filter envoy_extension_package() diff --git a/source/extensions/filters/http/aws_request_signing/BUILD b/source/extensions/filters/http/aws_request_signing/BUILD index 942ba57aff1f..7f76c5393959 100644 --- a/source/extensions/filters/http/aws_request_signing/BUILD +++ b/source/extensions/filters/http/aws_request_signing/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP AWS request signing filter -# Public docs: docs/root/configuration/http_filters/aws_request_signing_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/aws_request_signing_filter envoy_extension_package() diff --git a/source/extensions/filters/http/bandwidth_limit/BUILD b/source/extensions/filters/http/bandwidth_limit/BUILD index b2c1f4ccc49a..e6c6b5d17fcc 100644 --- a/source/extensions/filters/http/bandwidth_limit/BUILD +++ b/source/extensions/filters/http/bandwidth_limit/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Local Bandwidthlimit HTTP L7 filter -# Public docs: docs/root/configuration/http_filters/bandwidth_limit_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/bandwidth_limit_filter envoy_extension_package() diff --git a/source/extensions/filters/http/buffer/BUILD b/source/extensions/filters/http/buffer/BUILD index dc9174999883..c1997322665f 100644 --- a/source/extensions/filters/http/buffer/BUILD +++ b/source/extensions/filters/http/buffer/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Request buffering and timeout L7 HTTP filter -# Public docs: docs/root/configuration/http_filters/buffer_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/buffer_filter envoy_extension_package() diff --git a/source/extensions/filters/http/compressor/BUILD b/source/extensions/filters/http/compressor/BUILD index b1e998f12918..1dd1e309e42c 100644 --- a/source/extensions/filters/http/compressor/BUILD +++ b/source/extensions/filters/http/compressor/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # HTTP L7 filter that performs compression with configurable compression libraries -# Public docs: docs/root/configuration/http_filters/compressor_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/compressor_filter envoy_extension_package() diff --git a/source/extensions/filters/http/cors/BUILD b/source/extensions/filters/http/cors/BUILD index 618d84a50f7c..639179876cb1 100644 --- a/source/extensions/filters/http/cors/BUILD +++ b/source/extensions/filters/http/cors/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP filter which implements CORS processing (https://en.wikipedia.org/wiki/Cross-origin_resource_sharing) -# Public docs: docs/root/configuration/http_filters/cors_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/cors_filter envoy_extension_package() diff --git a/source/extensions/filters/http/csrf/BUILD b/source/extensions/filters/http/csrf/BUILD index 62b356910693..48889ab7d9dd 100644 --- a/source/extensions/filters/http/csrf/BUILD +++ b/source/extensions/filters/http/csrf/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP filter which implements CSRF processing (https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF)) -# Public docs: docs/root/configuration/http_filters/csrf_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/csrf_filter envoy_extension_package() diff --git a/source/extensions/filters/http/decompressor/BUILD b/source/extensions/filters/http/decompressor/BUILD index 0e85a3267d38..a30d31b3c1fb 100644 --- a/source/extensions/filters/http/decompressor/BUILD +++ b/source/extensions/filters/http/decompressor/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # HTTP L7 filter that performs decompression with configurable decompression libraries -# Public docs: docs/root/configuration/http_filters/decompressor_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/decompressor_filter envoy_extension_package() diff --git a/source/extensions/filters/http/dynamo/BUILD b/source/extensions/filters/http/dynamo/BUILD index 0e5f5d473ae6..91a8a84dfc07 100644 --- a/source/extensions/filters/http/dynamo/BUILD +++ b/source/extensions/filters/http/dynamo/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # AWS DynamoDB L7 HTTP filter (observability): https://aws.amazon.com/dynamodb/ -# Public docs: docs/root/configuration/http_filters/dynamodb_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/dynamodb_filter envoy_extension_package() diff --git a/source/extensions/filters/http/ext_authz/BUILD b/source/extensions/filters/http/ext_authz/BUILD index 8c88d339d695..77f6f3655d32 100644 --- a/source/extensions/filters/http/ext_authz/BUILD +++ b/source/extensions/filters/http/ext_authz/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # External authorization L7 HTTP filter -# Public docs: TODO(saumoh): Docs needed in docs/root/configuration/http_filters +# Public docs: TODO(saumoh): Docs needed in docs/root/configuration/http/http_filters envoy_extension_package() diff --git a/source/extensions/filters/http/fault/BUILD b/source/extensions/filters/http/fault/BUILD index 08f464a0c64c..fbc3b80420c6 100644 --- a/source/extensions/filters/http/fault/BUILD +++ b/source/extensions/filters/http/fault/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # HTTP L7 filter that injects faults into the request flow -# Public docs: docs/root/configuration/http_filters/fault_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/fault_filter envoy_extension_package() diff --git a/source/extensions/filters/http/grpc_http1_bridge/BUILD b/source/extensions/filters/http/grpc_http1_bridge/BUILD index 6b0c58125b6a..03695bf45c5e 100644 --- a/source/extensions/filters/http/grpc_http1_bridge/BUILD +++ b/source/extensions/filters/http/grpc_http1_bridge/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP filter that bridges HTTP/1.1 unary "gRPC" to compliant HTTP/2 gRPC. -# Public docs: docs/root/configuration/http_filters/grpc_http1_bridge_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_http1_bridge_filter envoy_extension_package() diff --git a/source/extensions/filters/http/grpc_http1_bridge/http1_bridge_filter.h b/source/extensions/filters/http/grpc_http1_bridge/http1_bridge_filter.h index 9aa120075d5c..271f0d965ba8 100644 --- a/source/extensions/filters/http/grpc_http1_bridge/http1_bridge_filter.h +++ b/source/extensions/filters/http/grpc_http1_bridge/http1_bridge_filter.h @@ -11,7 +11,8 @@ namespace Extensions { namespace HttpFilters { namespace GrpcHttp1Bridge { /** - * See docs/configuration/http_filters/grpc_http1_bridge_filter.rst + * See + * https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_http1_bridge_filter */ class Http1BridgeFilter : public Http::StreamFilter { public: diff --git a/source/extensions/filters/http/grpc_json_transcoder/BUILD b/source/extensions/filters/http/grpc_json_transcoder/BUILD index 96c08101fc7f..de2dc380cfff 100644 --- a/source/extensions/filters/http/grpc_json_transcoder/BUILD +++ b/source/extensions/filters/http/grpc_json_transcoder/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP filter that implements binary gRPC to JSON transcoding -# Public docs: docs/root/configuration/http_filters/grpc_json_transcoder_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_json_transcoder_filter envoy_extension_package() diff --git a/source/extensions/filters/http/grpc_web/BUILD b/source/extensions/filters/http/grpc_web/BUILD index 0f27e5f3695b..c3269a9dfc6a 100644 --- a/source/extensions/filters/http/grpc_web/BUILD +++ b/source/extensions/filters/http/grpc_web/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP filter that implements the grpc-web protocol (https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-WEB.md) -# Public docs: docs/root/configuration/http_filters/grpc_web_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_web_filter envoy_extension_package() diff --git a/source/extensions/filters/http/grpc_web/grpc_web_filter.h b/source/extensions/filters/http/grpc_web/grpc_web_filter.h index fabad0f214ed..72bf8969ce2b 100644 --- a/source/extensions/filters/http/grpc_web/grpc_web_filter.h +++ b/source/extensions/filters/http/grpc_web/grpc_web_filter.h @@ -14,7 +14,7 @@ namespace HttpFilters { namespace GrpcWeb { /** - * See docs/configuration/http_filters/grpc_web_filter.rst + * See https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/grpc_web_filter */ class GrpcWebFilter : public Http::StreamFilter, NonCopyable { public: diff --git a/source/extensions/filters/http/header_to_metadata/BUILD b/source/extensions/filters/http/header_to_metadata/BUILD index ff6b8466a427..327f8d0ee3ca 100644 --- a/source/extensions/filters/http/header_to_metadata/BUILD +++ b/source/extensions/filters/http/header_to_metadata/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # HTTP L7 filter that transforms request data into dynamic metadata -# Public docs: docs/root/configuration/http_filters/header_to_metadata_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/header_to_metadata_filter envoy_extension_package() diff --git a/source/extensions/filters/http/health_check/BUILD b/source/extensions/filters/http/health_check/BUILD index 3841dd7b6cc7..619cd53c0329 100644 --- a/source/extensions/filters/http/health_check/BUILD +++ b/source/extensions/filters/http/health_check/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP filter that implements health check responses -# Public docs: docs/root/configuration/http_filters/health_check_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/health_check_filter envoy_extension_package() diff --git a/source/extensions/filters/http/ip_tagging/BUILD b/source/extensions/filters/http/ip_tagging/BUILD index 33f905265651..5fccba18dac9 100644 --- a/source/extensions/filters/http/ip_tagging/BUILD +++ b/source/extensions/filters/http/ip_tagging/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # HTTP L7 filter that writes an IP tagging header based on IP trie data -# Public docs: docs/root/configuration/http_filters/ip_tagging_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/ip_tagging_filter envoy_extension_package() diff --git a/source/extensions/filters/http/local_ratelimit/BUILD b/source/extensions/filters/http/local_ratelimit/BUILD index e1842983b466..0f3949915f59 100644 --- a/source/extensions/filters/http/local_ratelimit/BUILD +++ b/source/extensions/filters/http/local_ratelimit/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Local Ratelimit L7 HTTP filter -# Public docs: docs/root/configuration/http_filters/local_rate_limit_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/local_rate_limit_filter envoy_extension_package() diff --git a/source/extensions/filters/http/lua/BUILD b/source/extensions/filters/http/lua/BUILD index 83116b2f00c3..a1cc788c104f 100644 --- a/source/extensions/filters/http/lua/BUILD +++ b/source/extensions/filters/http/lua/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Lua scripting L7 HTTP filter (https://www.lua.org/, http://luajit.org/) -# Public docs: docs/root/configuration/http_filters/lua_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/lua_filter envoy_extension_package() diff --git a/source/extensions/filters/http/oauth2/BUILD b/source/extensions/filters/http/oauth2/BUILD index c1c51980d610..27af8473b09f 100644 --- a/source/extensions/filters/http/oauth2/BUILD +++ b/source/extensions/filters/http/oauth2/BUILD @@ -11,7 +11,7 @@ licenses(["notice"]) # Apache 2 envoy_extension_package() # HTTP L7 filter that performs oauth. -# Public docs: docs/root/configuration/http_filters/oauth_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/oauth2_filter envoy_cc_library( name = "oauth_callback_interface", diff --git a/source/extensions/filters/http/ratelimit/BUILD b/source/extensions/filters/http/ratelimit/BUILD index 13a1ef2efe5b..4b2890af5b49 100644 --- a/source/extensions/filters/http/ratelimit/BUILD +++ b/source/extensions/filters/http/ratelimit/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Ratelimit L7 HTTP filter -# Public docs: docs/root/configuration/http_filters/rate_limit_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/rate_limit_filter envoy_extension_package() diff --git a/source/extensions/filters/http/router/BUILD b/source/extensions/filters/http/router/BUILD index 508b8c50b9d6..9e05028c60b5 100644 --- a/source/extensions/filters/http/router/BUILD +++ b/source/extensions/filters/http/router/BUILD @@ -7,7 +7,7 @@ load( licenses(["notice"]) # Apache 2 # HTTP L7 filter responsible for routing to upstream connection pools -# Public docs: docs/root/configuration/http_filters/router_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter envoy_extension_package() diff --git a/source/extensions/filters/http/tap/BUILD b/source/extensions/filters/http/tap/BUILD index 9693506a366d..526f6d250e0c 100644 --- a/source/extensions/filters/http/tap/BUILD +++ b/source/extensions/filters/http/tap/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # L7 HTTP Tap filter -# Public docs: docs/root/configuration/http_filters/tap_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/tap_filter envoy_extension_package() diff --git a/source/extensions/filters/http/wasm/BUILD b/source/extensions/filters/http/wasm/BUILD index effe8996c206..0d71f7bb0fa4 100644 --- a/source/extensions/filters/http/wasm/BUILD +++ b/source/extensions/filters/http/wasm/BUILD @@ -9,7 +9,7 @@ licenses(["notice"]) # Apache 2 envoy_extension_package() -# Public docs: docs/root/configuration/http_filters/wasm_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/wasm_filter envoy_cc_library( name = "wasm_filter_lib", diff --git a/source/extensions/filters/listener/original_dst/BUILD b/source/extensions/filters/listener/original_dst/BUILD index 4a3d275588e2..a7954c898977 100644 --- a/source/extensions/filters/listener/original_dst/BUILD +++ b/source/extensions/filters/listener/original_dst/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # ORIGINAL_DST iptables redirection listener filter -# Public docs: docs/root/configuration/listener_filters/original_dst_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/listener_filters/original_dst_filter envoy_extension_package() diff --git a/source/extensions/filters/listener/tls_inspector/BUILD b/source/extensions/filters/listener/tls_inspector/BUILD index a540cc428504..ec2a3e013564 100644 --- a/source/extensions/filters/listener/tls_inspector/BUILD +++ b/source/extensions/filters/listener/tls_inspector/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # TLS inspector filter for examining various TLS parameters before routing to a FilterChain. -# Public docs: docs/root/configuration/listener_filters/tls_inspector.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/listener_filters/tls_inspector envoy_extension_package() diff --git a/source/extensions/filters/network/client_ssl_auth/BUILD b/source/extensions/filters/network/client_ssl_auth/BUILD index 8c9169f3fc8e..62478512924c 100644 --- a/source/extensions/filters/network/client_ssl_auth/BUILD +++ b/source/extensions/filters/network/client_ssl_auth/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Client SSL authorization L4 network filter -# Public docs: docs/root/configuration/network_filters/client_ssl_auth_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/client_ssl_auth_filter envoy_extension_package() diff --git a/source/extensions/filters/network/connection_limit/BUILD b/source/extensions/filters/network/connection_limit/BUILD index eda2ddc3d484..cb19d33ddfb4 100644 --- a/source/extensions/filters/network/connection_limit/BUILD +++ b/source/extensions/filters/network/connection_limit/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Connection limit L4 network filter -# Public docs: docs/root/configuration/network_filters/connection_limit_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/connection_limit_filter envoy_extension_package() diff --git a/source/extensions/filters/network/direct_response/BUILD b/source/extensions/filters/network/direct_response/BUILD index a80985231941..783c67189792 100644 --- a/source/extensions/filters/network/direct_response/BUILD +++ b/source/extensions/filters/network/direct_response/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Direct response L4 network filter. -# Public docs: docs/root/configuration/network_filters/direct_response_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/direct_response_filter envoy_extension_package() diff --git a/source/extensions/filters/network/echo/BUILD b/source/extensions/filters/network/echo/BUILD index 67db7f18a967..14dca0c27a63 100644 --- a/source/extensions/filters/network/echo/BUILD +++ b/source/extensions/filters/network/echo/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Echo L4 network filter. This is primarily a simplistic example. -# Public docs: docs/root/configuration/network_filters/echo_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/echo_filter envoy_extension_package() diff --git a/source/extensions/filters/network/ext_authz/BUILD b/source/extensions/filters/network/ext_authz/BUILD index ec33b570f98b..23a70a1a4832 100644 --- a/source/extensions/filters/network/ext_authz/BUILD +++ b/source/extensions/filters/network/ext_authz/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # External authorization L4 network filter -# Public docs: TODO(saumoh): Docs needed in docs/root/configuration/network_filters +# Public docs: TODO(saumoh): Docs needed in docs/root/configuration/listeners/network_filters envoy_extension_package() diff --git a/source/extensions/filters/network/http_connection_manager/BUILD b/source/extensions/filters/network/http_connection_manager/BUILD index e4945a15788e..40e2a8cca291 100644 --- a/source/extensions/filters/network/http_connection_manager/BUILD +++ b/source/extensions/filters/network/http_connection_manager/BUILD @@ -10,7 +10,7 @@ licenses(["notice"]) # Apache 2 # L4 network filter that implements HTTP protocol handling and filtering. This filter internally # drives all of the L7 HTTP filters. -# Public docs: docs/root/configuration/http_conn_man/http_conn_man.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/http/http_conn_man/http_conn_man envoy_extension_package() diff --git a/source/extensions/filters/network/local_ratelimit/BUILD b/source/extensions/filters/network/local_ratelimit/BUILD index 9bcc59be6883..098929f77c63 100644 --- a/source/extensions/filters/network/local_ratelimit/BUILD +++ b/source/extensions/filters/network/local_ratelimit/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Local ratelimit L4 network filter -# Public docs: docs/root/configuration/network_filters/local_rate_limit_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/local_rate_limit_filter envoy_extension_package() diff --git a/source/extensions/filters/network/mongo_proxy/BUILD b/source/extensions/filters/network/mongo_proxy/BUILD index 651d4d6ed20f..c30e7de494dc 100644 --- a/source/extensions/filters/network/mongo_proxy/BUILD +++ b/source/extensions/filters/network/mongo_proxy/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Mongo proxy L4 network filter (observability and fault injection). -# Public docs: docs/root/configuration/network_filters/mongo_proxy_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/mongo_proxy_filter envoy_extension_package() diff --git a/source/extensions/filters/network/ratelimit/BUILD b/source/extensions/filters/network/ratelimit/BUILD index a3a90498d881..97af39e0d1ec 100644 --- a/source/extensions/filters/network/ratelimit/BUILD +++ b/source/extensions/filters/network/ratelimit/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # Ratelimit L4 network filter -# Public docs: docs/root/configuration/network_filters/rate_limit_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/rate_limit_filter envoy_extension_package() diff --git a/source/extensions/filters/network/redis_proxy/BUILD b/source/extensions/filters/network/redis_proxy/BUILD index 58d689ff66fc..f21ebb0b27e2 100644 --- a/source/extensions/filters/network/redis_proxy/BUILD +++ b/source/extensions/filters/network/redis_proxy/BUILD @@ -9,7 +9,7 @@ licenses(["notice"]) # Apache 2 # Redis proxy L4 network filter. Implements consistent hashing and observability for large redis # clusters. -# Public docs: docs/root/configuration/network_filters/redis_proxy_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/redis_proxy_filter envoy_extension_package() diff --git a/source/extensions/filters/network/tcp_proxy/BUILD b/source/extensions/filters/network/tcp_proxy/BUILD index 723dec148112..9916a1e0b0ee 100644 --- a/source/extensions/filters/network/tcp_proxy/BUILD +++ b/source/extensions/filters/network/tcp_proxy/BUILD @@ -7,7 +7,7 @@ load( licenses(["notice"]) # Apache 2 # TCP proxy L4 network filter. -# Public docs: docs/root/configuration/network_filters/tcp_proxy_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/tcp_proxy_filter envoy_extension_package() diff --git a/source/extensions/filters/network/wasm/BUILD b/source/extensions/filters/network/wasm/BUILD index 6633576aa7a1..8b3bb8ac01fb 100644 --- a/source/extensions/filters/network/wasm/BUILD +++ b/source/extensions/filters/network/wasm/BUILD @@ -9,7 +9,7 @@ licenses(["notice"]) # Apache 2 envoy_extension_package() -# Public docs: docs/root/configuration/network_filters/wasm_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/wasm_filter envoy_cc_library( name = "wasm_filter_lib", diff --git a/source/extensions/filters/network/zookeeper_proxy/BUILD b/source/extensions/filters/network/zookeeper_proxy/BUILD index b71fbf09d546..245353a623a8 100644 --- a/source/extensions/filters/network/zookeeper_proxy/BUILD +++ b/source/extensions/filters/network/zookeeper_proxy/BUILD @@ -8,7 +8,7 @@ load( licenses(["notice"]) # Apache 2 # ZooKeeper proxy L7 network filter. -# Public docs: docs/root/configuration/network_filters/zookeeper_proxy_filter.rst +# Public docs: https://envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/zookeeper_proxy_filter envoy_extension_package() diff --git a/source/extensions/formatter/req_without_query/BUILD b/source/extensions/formatter/req_without_query/BUILD index 45c8ee111559..44474218ae07 100644 --- a/source/extensions/formatter/req_without_query/BUILD +++ b/source/extensions/formatter/req_without_query/BUILD @@ -10,7 +10,7 @@ licenses(["notice"]) # Apache 2 envoy_extension_package() # Access log formatter that strips query string from request path -# Public docs: docs/root/TODO(tsaarni) +# Public docs: TODO(tsaarni) envoy_cc_library( name = "req_without_query_lib",