Skip to content

Commit

Permalink
Merge pull request #350 from Arlolic/patch-1
Browse files Browse the repository at this point in the history
Update LetsEncrypt.md
  • Loading branch information
tjbck authored Jan 8, 2025
2 parents 2a9cc38 + c49dd89 commit 4864fd7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/tutorials/integrations/tab-nginx/LetsEncrypt.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ Let's Encrypt provides free SSL certificates trusted by most browsers, ideal for
location / {
proxy_pass http://host.docker.internal:3000;
# Add WebSocket support (Necessary for version 0.5.0 and up)
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
Expand Down

0 comments on commit 4864fd7

Please sign in to comment.