nginx配置websocket代理

天大地大妈咪最大 提交于 2020-08-05 04:28:26

什么是websocket

  1. 传输层协议, 基于TCP, 类似http,与http不同的时候,websocket支持长链接,支持服务器可以往客户端推送

  2. WebSocket是HTML5开始提供的一种浏览器与服务器间进行全双工通讯的网络技术。 依靠这种技术可以实现客户端和服务器端的长连接,双向实时通信。

    它是真正的双向平等对话,属于服务器推送技术的一种。其他特点包括:

    1. 建立在 TCP 协议之上,服务器端的实现比较容易。
    2. 与 HTTP 协议有着良好的兼容性。默认端口也是80和443,并且握手阶段采用 HTTP 协议,因此握手时不容易屏蔽,能通过各种 HTTP 代理服务器。
    3. 数据格式比较轻量,性能开销小,通信高效。
    4. 可以发送文本,也可以发送二进制数据。
    5. 没有同源限制,客户端可以与任意服务器通信。
    6. 协议标识符是ws(如果加密,则为wss),服务器网址就是 URL。

    协议标识符是ws(如果加密,则为wss),服务器网址就是 URL

    ws://xncoding.com:80/some/path
    

    另外客户端不只是浏览器,只要实现了ws或者wss协议的客户端socket都可以和服务器进行通信。

原理

一个典型的Websocket握手

GET /chat HTTP/1.1
Host: server.example.com
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Key: x3JJHMbDL1EzLkh9GBhXDw==
Sec-WebSocket-Protocol: chat, superchatSec-WebSocket-Version: 13
Origin: http://example.com

其中的

Upgrade: websocket
Connection: Upgrade

可以从请求包中看出Upgrade字段,以及Connection字段得知,websocket区别于http协议

如何配置

将下列配置修改 ${your_host} 后,既可以使用。

map $http_upgrade $connection_upgrade {
    default upgrade;
    '' close;
}

upstream websocket {
    server localhost:8282;  #根据实际
}

server {
    server_name ${your_host}; #根据实际
     listen 80;
     location / {
         proxy_pass http://websocket;
         proxy_read_timeout 300s;
         proxy_send_timeout 300s;
         
         proxy_set_header Host $host;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
         
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection $connection_upgrade;
     }
}

原理如上面分析的,主要是设置请求头中的Upgrade字段和Connection字段

proxy_set_header Upgrade $http_upgrade;

proxy_set_header Connection $connection_upgrade;

总结

  1. websocket是http的升级版本,借用了HTTP的协议来完成一部分握手,只是为了兼容现有浏览器的握手规范而已。
  2. nginx配置代理的时候,主要针对请求头增加 Upgrade 字段和Connection 字段

参考

https://www.nginx.com/blog/websocket-nginx/

https://www.xncoding.com/2017/05/03/web/websocket.html

https://www.xncoding.com/2018/03/12/fullstack/nginx-websocket.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!