Openlitespeed 作为 WebSocket 代理

Openlitespeed 作为 WebSocket 代理

我正在构建与套接字相关的 Web 应用程序。我的应用程序在没有 https 的情况下运行良好,如果有 https,它将无法连接。

并且作为 nginx 的指导必须配置额外的代理。

但我不知道openlitespeed上可以怎样配置?

这是在 nginx 上配置的方法,请帮我在 openlitespeed 上配置一下!

https://www.nginx.com/blog/nginx-nodejs-websockets-socketio/

server {
    server_name app.domain.com;
    location / {
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_http_version 1.1;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $host;
        proxy_pass http://socket_nodes;
    }
}

location /assets {
    alias /path/to/assets;
    access_log off;
    expires max;
}

太感谢了!

答案1

检查一下维基百科,它是为 rocketchat 制作的,但 websocket 程序是相同的。

相关内容