nginx

nginx怎么配置websocker连接

小亿
147
2024-01-11 20:12:12
栏目: 编程语言

要配置Nginx以支持WebSocket连接,需要进行以下步骤:

  1. 打开Nginx的配置文件(通常位于/etc/nginx/nginx.conf)。
  2. 在http部分添加以下配置:
map $http_upgrade $connection_upgrade {
    default upgrade;
    ''      close;
}

server {
    listen 80;
    server_name example.com;

    location / {
        proxy_pass http://your_websocket_server;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }
}
  1. http://your_websocket_server替换为实际的WebSocket服务器地址。
  2. 保存并关闭配置文件。
  3. 检查配置文件是否有语法错误:nginx -t
  4. 重启Nginx服务:systemctl restart nginx(或者使用适合你的操作系统的命令)。

完成上述步骤后,Nginx将会正确代理WebSocket连接。确保你的WebSocket服务器正常运行,并且Nginx可以访问到它。

0
看了该问题的人还看了