From c9648569271b0a438e034a92e286009c538374c0 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Sat, 19 Nov 2022 03:05:31 -0600 Subject: [PATCH] [docs] Remove trailing / from proxy_pass for nginx (#1077) The trailing / can break relative URLs. --- docs/installation_guide/nginx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation_guide/nginx.md b/docs/installation_guide/nginx.md index 799d26e19..7beeff7a3 100644 --- a/docs/installation_guide/nginx.md +++ b/docs/installation_guide/nginx.md @@ -61,7 +61,7 @@ server { listen [::]:80; server_name example.org; location / { - proxy_pass http://localhost:8080/; + proxy_pass http://localhost:8080; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade";