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
Copy file name to clipboardExpand all lines: docs/network/load_balancer.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,21 @@ Routing rules that define how traffic is handled:
123
123
"protocol": "http",
124
124
"port": 80,
125
125
"domains": ["example.com", "www.example.com"],
126
+
}
127
+
```
128
+
129
+
#### External sources
130
+
131
+
You may use external sources to forward traffic from LB to remote systems (use proxy_protocol_from to enable the PROXY protocol and pass the real client IP to the backend; Nginx will be started on the remote system):
132
+
133
+
```json
134
+
{
135
+
"name": "web-vhost",
136
+
"description": "Web server vhost",
137
+
"protocol": "http",
138
+
"port": 80,
139
+
"domains": ["example.com", "www.example.com"],
140
+
"proxy_protocol_from": "127.0.0.1/32",
126
141
"external_sources": [
127
142
{
128
143
"kind": "ssh_forward",
@@ -135,9 +150,9 @@ Routing rules that define how traffic is handled:
0 commit comments