1 Answer
- Newest
- Most votes
- Most comments
1
I realized this was due to websockets not being proxied. Adding the following to my server block fixed the issue.
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
Relevant content
- asked a year ago
- asked 3 years ago
- asked 3 years ago
