📜  如何修复 stomp websocket 错误 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:20.759000             🧑  作者: Mango

代码示例1
#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";
}