comparison xml/en/docs/http/ngx_http_proxy_protocol_vendor_module.xml @ 2915:923977f02d39

Updated docs for the upcoming NGINX Plus release.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 29 Nov 2022 11:48:55 +0000
parents
children
comparison
equal deleted inserted replaced
2914:3a2d342533fb 2915:923977f02d39
1 <?xml version="1.0"?>
2
3 <!--
4 Copyright (C) Nginx, Inc.
5 -->
6
7 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
8
9 <module name="Module ngx_http_proxy_protocol_vendor_module"
10 link="/en/docs/http/ngx_http_proxy_protocol_vendor_module.html"
11 lang="en"
12 rev="1">
13
14 <section id="summary">
15
16 <para>
17 The <literal>ngx_http_proxy_protocol_vendor_module</literal> module (1.23.3)
18 allows obtaining additional information about a connection in
19 cloud platforms from application-specific TLVs of the
20 <link url="http://www.haproxy.org/download/1.8/doc/proxy-protocol.txt">PROXY
21 protocol</link>
22 header.
23 </para>
24
25 <para>
26 Supported cloud platforms:
27 <list type="bullet">
28
29 <listitem>
30 Amazon Web Services
31 </listitem>
32
33 <listitem>
34 Google Cloud Platform
35 </listitem>
36
37 <listitem>
38 Microsoft Azure
39 </listitem>
40
41 </list>
42 </para>
43
44 <para>
45 The PROXY protocol must be previously enabled by setting the
46 <literal>proxy_protocol</literal> parameter
47 in the <link doc="ngx_http_core_module.xml" id="listen"/> directive.
48 </para>
49
50 <para>
51 <note>
52 This module is available as part of our
53 <commercial_version>commercial subscription</commercial_version>.
54 </note>
55 </para>
56
57 </section>
58
59
60 <section id="example" name="Example Configuration">
61
62 <para>
63 <example>
64 proxy_set_header X-Conn-ID $proxy_protocol_tlv_gcp_conn_id;
65
66 server {
67 listen 80 proxy_protocol;
68 listen 443 ssl proxy_protocol;
69 ...
70 }
71 </example>
72 </para>
73
74 </section>
75
76
77 <section id="variables" name="Embedded Variables">
78
79 <para>
80 <list type="tag">
81
82 <tag-name id="var_proxy_protocol_tlv_aws_vpce_id"><var>$proxy_protocol_tlv_aws_vpce_id</var></tag-name>
83 <tag-desc>
84 TLV value from the PROXY Protocol header representing the
85 <link url="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#proxy-protocol">ID
86 of AWS VPC endpoint</link>
87 </tag-desc>
88
89 <tag-name id="var_proxy_protocol_tlv_azure_pel_id"><var>$proxy_protocol_tlv_azure_pel_id</var></tag-name>
90 <tag-desc>
91 TLV value from the PROXY Protocol header representing the
92 <link url="https://learn.microsoft.com/en-us/azure/private-link/private-link-service-overview#getting-connection-information-using-tcp-proxy-v2">LinkID
93 of Azure private endpoint</link>
94 </tag-desc>
95
96 <tag-name id="var_proxy_protocol_tlv_gcp_conn_id"><var>$proxy_protocol_tlv_gcp_conn_id</var></tag-name>
97 <tag-desc>
98 TLV value from the PROXY Protocol header representing
99 <link url="https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#proxy-protocol">Google Cloud PSC
100 connection ID</link>
101 </tag-desc>
102
103 </list>
104 </para>
105
106 </section>
107
108 </module>