nginx配置websocket请求转发
时间: 2023-11-17 15:58:40 浏览: 177
nginx实现请求转发
nginx可以通过配置实现对websocket请求的转发。具体步骤如下:
1. 在nginx.conf中添加以下配置:
```
location /websocket {
proxy_pass http://your_websocket_server;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
```
其中,your_websocket_server是你的websocket服务器地址。
2. 修改完nginx.conf后,执行以下命令使配置生效:
```
nginx -s reload
```
这样,nginx就可以将websocket请求转发到指定的服务器上了。
阅读全文