nginx-stream-proxy-protocol-v2 icon indicating copy to clipboard operation
nginx-stream-proxy-protocol-v2 copied to clipboard

The patch for NGINX.Streams which brings support of proxy protocol v2

Results 3 nginx-stream-proxy-protocol-v2 issues
Sort by recently updated
recently updated
newest added

Unfortunately the patch stopped to work for nginx > 1.21.3. Do you have any plans to update the patch to more recent versions of nginx that support http/3? Thank you...

``` +unspec: + header->family_transport |= NGX_PROXY_PROTOCOL_V2_FAM_UNSPEC; + header->len = 0; ``` this keep ```family_transport``` with ```NGX_PROXY_PROTOCOL_V2_TRANS_STREAM``` set. Also ```NGX_PROXY_PROTOCOL_V2_FAM_UNSPEC = 0``` so this code does nothing. ```header->family_transport &= ~NGX_PROXY_PROTOCOL_V2_FAM_MASK;``` -...

Is it possible to include the `$proxy_protocol_tlv_AWS_VPCE_ID (parsed from type 0xEA)` TLV value upstream? With the TLV patch from slact, NGNIX is able to read, but I want to know...