Comment corriger l'erreur de stomp WebSocket

#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";
}
Uchephilz