这是由于你启用了 https,启用了 https 后,页面中的所有元素都要使用 https:// 加密协议加载,包括所有图片、Javascript、CSS。
按 F12 键,查看具体的错误详情。
案例一
[indent]index.js:100 Mixed Content: The page at 'https://example.com/' was
loaded over HTTPS, but attempted to connect to the insecure
WebSocket endpoint 'ws://my_sites_ip:8000/'. This request has been
blocked; this endpoint must be available over WSS.[/indent]
上述报错的,是 Websocket 连接使用了类似于 http 的非加密协议 ws://,需要全部改成 wss:// 加密协议进行连接。
具体修改方式,可查看程序开发商提供的安装文档,或联系程序开发商。