mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 03:36:39 +00:00
[docs] Remove trailing / from proxy_pass for nginx (#1077)
The trailing / can break relative URLs.
This commit is contained in:
parent
45ae719bd9
commit
c964856927
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue