gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c9648569271b0a438e034a92e286009c538374c0
parent 45ae719bd9d7bbffad0e2338149d87c47f18a4e6
Author: Leonora Tindall <nora@nora.codes>
Date:   Sat, 19 Nov 2022 03:05:31 -0600

[docs] Remove trailing / from proxy_pass for nginx (#1077)

The trailing / can break relative URLs.
Diffstat:
Mdocs/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 @@ -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";