diff --git a/docs/how-to-guides/new-user-guides/infrastructure-setup/nginx-load-balancer.md b/docs/how-to-guides/new-user-guides/infrastructure-setup/nginx-load-balancer.md index af421b66d07..799d0457d6e 100644 --- a/docs/how-to-guides/new-user-guides/infrastructure-setup/nginx-load-balancer.md +++ b/docs/how-to-guides/new-user-guides/infrastructure-setup/nginx-load-balancer.md @@ -62,6 +62,9 @@ After installing NGINX, you need to update the NGINX configuration file, `nginx. server :443 max_fails=3 fail_timeout=5s; server :443 max_fails=3 fail_timeout=5s; } + } + + http{ server { listen 443 ssl; proxy_pass rancher_servers_https; @@ -75,7 +78,7 @@ After installing NGINX, you need to update the NGINX configuration file, `nginx. } } - + } ```