diff options
author | 2023-05-15 14:07:19 +0200 | |
---|---|---|
committer | 2023-05-15 14:07:19 +0200 | |
commit | 32aefd55b2b82e819313e83c4cb6cd4f57551eba (patch) | |
tree | c8c1bdc08359474cf10708e26e214aff7aa4f9b2 /docs/installation_guide | |
parent | [chore]: Bump golang.org/x/crypto from 0.8.0 to 0.9.0 (#1784) (diff) | |
download | gotosocial-32aefd55b2b82e819313e83c4cb6cd4f57551eba.tar.xz |
[docs] remove nginx trailing slash (#1789)
Diffstat (limited to 'docs/installation_guide')
-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 bbf12b050..f1a492c03 100644 --- a/docs/installation_guide/nginx.md +++ b/docs/installation_guide/nginx.md @@ -154,7 +154,7 @@ server { server_name example.org; location / { # set to 127.0.0.1 instead of localhost to work around https://stackoverflow.com/a/52550758 - proxy_pass http://127.0.0.1:8080/; + proxy_pass http://127.0.0.1:8080; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; |