Skip to content

Commit

Permalink
Fix nginx headers
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Oct 29, 2024
1 parent 6e4e794 commit 3183a5c
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions docs/guides/selfhosting/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,7 @@ In addition we also need a ssl certificate, change the path to your needs, and c
proxy_pass http://webui:80;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Connection "upgrade";
proxy_set_header Connection $connection_upgrade
}
}

Expand All @@ -414,8 +413,7 @@ In addition we also need a ssl certificate, change the path to your needs, and c
proxy_pass http://api:80;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Connection "upgrade";
proxy_set_header Connection $connection_upgrade
}
}

Expand All @@ -429,8 +427,7 @@ In addition we also need a ssl certificate, change the path to your needs, and c
proxy_pass http://lcg:80;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Connection "upgrade";
proxy_set_header Connection $connection_upgrade
}
}

Expand Down

0 comments on commit 3183a5c

Please sign in to comment.