-
Notifications
You must be signed in to change notification settings - Fork 273
lds: Add listener_filter_chain. #400
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 8 commits
02b4a5e
74a163a
113052e
071ddd9
6f24f4d
0dd802c
2ce8e72
138d110
94773bf
fd02c81
5f41ccc
11d9ab4
362031f
a7e6fdf
d6f8842
e2a201a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| .. _config_network_filters_echo: | ||
|
|
||
| Echo | ||
| ==== | ||
|
|
||
| The echo is a trivial network filter mainly meant to demonstrate the network filter API. If | ||
| installed it will echo (write) all received data back to the connected downstream client. | ||
|
|
||
| * :ref:`v1 API reference <config_network_filters_echo_v1>` | ||
| * :ref:`v2 API reference <envoy_api_field_Filter.name>` | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| .. _config_listener_filters_proxy_protocol: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. love the new docs. Can we also have a brief mention of this functionality in https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/listeners?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
|
|
||
| Proxy Protocol | ||
| ============== | ||
|
|
||
| Proxy protocol filter processes the `PROXY protocol V1 | ||
| <http://www.haproxy.org/download/1.5/doc/proxy-protocol.txt>`_ header added by some load balancers | ||
| (e.g., AWL ELB) on new connections. With this the listener will assume that that remote address of | ||
| the connection is the one specified in the header. If this filter is not used, Envoy will use the | ||
| physical peer address of the connection as the remote address. Note that if the proxy protocol | ||
| header is present, further handling of the connection may fail if this filter is not used. | ||
|
|
||
| * :ref:`v2 API reference <envoy_api_field_ListenerFilter.name>` | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this file needs some real text. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added.