rocket.chat 备置好服务器端以后手机端无法链接

image

rocket.chat 备置好服务器端以后手机端无法链接,一直尝试链接服务器,出现这种情况是因为服务器端的wss 服务无法链接。正常情况下,服务器是已经准备好了,ws 链接,但手机端需要wss 链接。这种情况下,需要我们配置好服务器。根据你服务器的配置不同,对应的方法不同。

1.nginx
准备好你的域名的ssl 证书,同时备置改成:

# Upstreams
upstream backend {
    server 127.0.0.1:3000;
}

# HTTPS Server
server {
    listen 443;
    server_name your_hostname.com;

    # You can increase the limit if your need to.
    client_max_body_size 200M;

    error_log /var/log/nginx/rocketchat.access.log;

    ssl on;
    ssl_certificate /etc/nginx/certificate.crt;
    ssl_certificate_key /etc/nginx/certificate.key;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # don’t use SSLv3 ref: POODLE

    location / {
        proxy_pass http://backend/;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $http_host;

        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forward-Proto http;
        proxy_set_header X-Nginx-Proxy true;

        proxy_redirect off;
    }
}

2.Apache 配置

<VirtualHost *:443>

ServerAdmin it@domain.com

ServerName chat.domain.com

ErrorLog /var/log/chat.domain.com_error.log

TransferLog /var/log/chat.domain.com_access.log

LogLevel info

SSLEngine On

SSLCertificateFile /etc/ssl/certs/chat.domain.com.crt

SSLCertificateKeyFile /etc/ssl/private/chat.domain.com.key

SSLCertificateChainFile /etc/ssl/certs/intermediate.ca.pem

<Location />

        Order allow,deny

        Allow from all

</Location>

RewriteEngine On

RewriteCond %{HTTP:Upgrade} =websocket [NC]

RewriteRule /(.*)          ws://localhost:3000/$1 [P,L]

RewriteCond %{HTTP:Upgrade} !=websocket [NC]

RewriteRule /(.*)          http://localhost:3000/$1 [P,L]

ProxyPassReverse / http://localhost:3000/

</VirtualHost>

修改配置以后注意重启对应的服务

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 先啰嗦两句 李笑来说:“拖延”并非意味着拖延着完成事情,而是拖延着不去开始做这件事。而“不求有功但求无过”的心态很...
    隋隋隋知了阅读 3,582评论 1 4
  • 人生境界:沉得住气、弯得下腰、抬得起头 人生就是一片广阔无垠的天。时而旭日东升,时而黑云压城;一会儿万点繁...
    山东田夫阅读 4,756评论 1 9
  • 总是在晒秋的时候 想起不可见的故乡 半山坡 簸箕 房梁 红辣椒 花椒 魔芋片 总是在晒秋的时候 想起吹过屋檐的...
    牛怀良阅读 1,326评论 2 4