diff options
author | 2022-11-19 03:05:31 -0600 | |
---|---|---|
committer | 2022-11-19 10:05:31 +0100 | |
commit | c9648569271b0a438e034a92e286009c538374c0 (patch) | |
tree | a125629bf85782a95534748ea3ee714995d243da /docs/installation_guide/nginx.md | |
parent | [performance] replace account emojis relational query with separate calls to ... (diff) | |
download | gotosocial-c9648569271b0a438e034a92e286009c538374c0.tar.xz |
[docs] Remove trailing / from proxy_pass for nginx (#1077)
The trailing / can break relative URLs.
Diffstat (limited to 'docs/installation_guide/nginx.md')
-rw-r--r-- | docs/installation_guide/nginx.md | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |