From 4cc64470c4f78695ea0152add98e4d4358382a28 Mon Sep 17 00:00:00 2001 From: AndrStnz <28625365+AndrStnz@users.noreply.github.com> Date: Fri, 1 Sep 2023 09:49:10 +0200 Subject: [PATCH] remove proxy_pass directive from server block The directive proxy_pass is not allowed in a server block with http. Removing the proxy_pass directive at this location makes the sample useable. --- .../new-user-guides/infrastructure-setup/nginx-load-balancer.md | 1 - 1 file changed, 1 deletion(-) 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 896c3686ad2..0d065627669 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 @@ -72,7 +72,6 @@ After installing NGINX, you need to update the NGINX configuration file, `nginx. } server { listen 443 ssl; - proxy_pass rancher_servers_https; ssl_certificate /path/to/tls.crt; ssl_certificate_key /path/to/key.key; location / {