wss://domain.com:1234 怎么改成不加端口访问

1、控制台输入代码可以连接成功,但是小程序不能加端口所以要改成无端口的连接方式

ws = new WebSocket("wss://域名:1234");

ws.onopen = function() {
    alert("连接成功");
    ws.send('tom');
    alert("给服务端发送一个字符串:tom");
};
ws.onmessage = function(e) {
    alert("收到服务端的消息:" + e.data);
};

2、服务器是Nginx
3、宝塔面板设置过反向代理不起作用,不知道有没设置错了

https://img3.mukewang.com/5c8f38200001e71906380276.jpg

4、也设置过配置文件

https://img3.mukewang.com/5c8f38210001761101880493.jpg

upstream websocket { 
    server ip:端口;  //转发
}
server {
        location /wss {
             access_log /usr/share/nginx/logs/https-websocket.log;
             proxy_pass http://websocket/; # 代理到上面
             proxy_set_header X-Real-IP $remote_addr;
             proxy_set_header Host $host;
             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 "upgrade";
             rewrite /wss/(.*) /$1 break;
             proxy_redirect off;
        } 
}

5、初次接触还有个不懂得地方,我把网站暂停了为什么 ws = new WebSocket("wss://域名:1234");还是可以连接成功

幕布斯7119047
浏览 745回答 4
4回答

月关宝盒

学习一下ssl证书的相关知识

宝慕林4294392

需要端口的,https不加端口,默认端口是443,wss应该也是,你可以试一下
打开App,查看更多内容
随时随地看视频慕课网APP