Skip to content

Commit

Permalink
Fix proxy timeout value for load balancer example (Closes #914)
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Napp committed Jul 20, 2020
1 parent f65087b commit 503d5bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions adoc/deployment-loadbalancer.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ stream {
server {
listen 6443;
proxy_connect_timeout 5s;
proxy_timeout 5s;
proxy_timeout 30s;
proxy_pass k8s-masters;
}
Expand All @@ -291,7 +291,7 @@ stream {
server {
listen 32000;
proxy_connect_timeout 5s;
proxy_timeout 5s;
proxy_timeout 30s;
proxy_pass dex-backends; // <3>
}
Expand All @@ -304,7 +304,7 @@ stream {
server {
listen 32001;
proxy_connect_timeout 5s;
proxy_timeout 5s;
proxy_timeout 30s;
proxy_pass gangway-backends; // <3>
}
}
Expand Down

0 comments on commit 503d5bd

Please sign in to comment.