Merge pull request #350 from Arlolic/patch-1

Update LetsEncrypt.md
This commit is contained in:
Timothy Jaeryang Baek 2025-01-08 11:38:07 -08:00 committed by GitHub
commit 4864fd72e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;