summaryrefslogtreecommitdiffhomepage
path: root/src/core/ngx_proxy_protocol.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-10-21Parsing server PROXY protocol address and port (ticket #1206).Roman Arutyunyan1-0/+2
New variables $proxy_protocol_server_addr and $proxy_protocol_server_port are added both to HTTP and Stream.
2019-10-21Core: moved PROXY protocol fields out of ngx_connection_t.Roman Arutyunyan1-0/+6
Now a new structure ngx_proxy_protocol_t holds these fields. This allows to add more PROXY protocol fields in the future without modifying the connection structure.
2015-06-16Core: renamed ngx_proxy_protocol_parse to ngx_proxy_protocol_read.Roman Arutyunyan1-1/+1
The new name is consistent with the ngx_proxy_protocol_write function.
2015-06-16Stream: client-side PROXY protocol.Roman Arutyunyan1-0/+2
The new directive "proxy_protocol" toggles sending out PROXY protocol header to upstream once connection is established.
2014-03-17Added server-side support for PROXY protocol v1 (ticket #355).Roman Arutyunyan1-0/+23
Client address specified in the PROXY protocol header is now saved in the $proxy_protocol_addr variable and can be used in the realip module. This is currently not implemented for mail.