nginx websocket
Last updated on November 22, 2024 pm
🧙 Questions
☄️ Ideas
# 映射后端接口
location /leo {
proxy_pass http://172.28.187.147:30100/leo;
}
# 开启Websocket
location /ws {
proxy_pass http://172.28.187.147:30100/leo/ws;
proxy_http_version 1.1;
proxy_set_header Connection "upgrade";
}
🔗 Links
nginx websocket
https://ispong.isxcode.com/vue/nginx/nginx websocket/