Skip to content

Commit ccfe5bf

Browse files
committed
update docs
1 parent bf5b14b commit ccfe5bf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

site/content/how-to/monitoring/troubleshooting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ server {
203203
proxy_set_header Upgrade "$http_upgrade";
204204
proxy_set_header Connection "$connection_upgrade";
205205
proxy_http_version 1.1;
206-
proxy_pass http://group_default_coffee_80$request_uri;
206+
proxy_pass http://default_coffee_80$request_uri;
207207
}
208208
209209
location = /coffee {
@@ -212,17 +212,17 @@ server {
212212
proxy_set_header Upgrade "$http_upgrade";
213213
proxy_set_header Connection "$connection_upgrade";
214214
proxy_http_version 1.1;
215-
proxy_pass http://group_default_coffee_80$request_uri;
215+
proxy_pass http://default_coffee_80$request_uri;
216216
}
217217
218218
location / {
219219
return 404 "";
220220
}
221221
222222
}
223-
upstream group_default_coffee_80 {
223+
upstream default_coffee_80 {
224224
random two least_conn;
225-
zone group_default_coffee_80 512k;
225+
zone default_coffee_80 512k;
226226
227227
server 10.244.0.13:8080;
228228
}

site/content/how-to/traffic-management/routing-traffic-to-your-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ If you have any issues while testing the configuration, try the following to deb
340340
341341
location / {
342342
...
343-
proxy_pass http://group_default_coffee_80$request_uri; # the upstream is named group_default_coffee_80
343+
proxy_pass http://default_coffee_80$request_uri; # the upstream is named default_coffee_80
344344
...
345345
}
346346
}
@@ -349,7 +349,7 @@ If you have any issues while testing the configuration, try the following to deb
349349
There should also be an upstream block with a name that matches the upstream in the **proxy_pass** directive. This upstream block should contain the pod IPs of the **coffee** pods:
350350

351351
```nginx configuration
352-
upstream group_default_coffee_80 {
352+
upstream default_coffee_80 {
353353
...
354354
server 10.12.0.18:8080; # these should be the pod IPs of the coffee pods
355355
server 10.12.0.19:8080;

0 commit comments

Comments
 (0)