Answers for "How to fix stomp websocket error"

1

How to fix stomp websocket error

#add this to your nginx config

location / {
proxy_pass our_server;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
Posted by: Guest on October-03-2021

Code answers related to "How to fix stomp websocket error"

Browse Popular Code Answers by Language