You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifiy an IP address of the proxied server. The address can contain variables. The special value off is equal to none,
191
-
which uses the IP address resolved from host name of CONNECT request line.
190
+
Specifiy an IP address of the proxied server. The address can contain variables.
191
+
The special value off is equal to none, which uses the IP address resolved from host name of CONNECT request line.
192
+
193
+
NOTE: If using `set $<nginx variable>` and `proxy_connect_address $<nginx variable>` together, you should use `proxy_connect_rewrite.patch` instead, see [Install](#install) for more details.
192
194
193
195
proxy_connect_bind
194
196
------------------
@@ -198,17 +200,17 @@ Default: `none`
198
200
Context: `server`
199
201
200
202
Makes outgoing connections to a proxied server originate from the specified local IP address with an optional port.
201
-
Parameter value can contain variables. The special value off is equal to none, which allows the system to auto-assign
202
-
the local IP address and port.
203
+
Parameter value can contain variables. The special value off is equal to none, which allows the system to auto-assign the local IP address and port.
203
204
204
-
The transparent parameter allows outgoing connections to a proxied server originate from a non-local IP address,
205
-
for example, from a real IP address of a client:
205
+
The transparent parameter allows outgoing connections to a proxied server originate from a non-local IP address, for example, from a real IP address of a client:
206
206
207
207
```
208
208
proxy_connect_bind $remote_addr transparent;
209
209
210
210
```
211
211
212
+
NOTE: If using `set $<nginx variable>` and `proxy_connect_bind $<nginx variable>` together, you should use `proxy_connect_rewrite.patch` instead, see [Install](#install) for more details.
0 commit comments