You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
网易云版本:2.10.3,已安装证书,已设置endpoint指向,端口测试可用,开启代理后无法连接网络,关闭后正常使用
在尝试将所有相关证书移除后重新安装,依旧无法连接网络,求大佬帮助
前一天还能正常使用,今天就不能用了
nw.js内容如下:
const Service = require('node-windows').Service;
const svc = new Service({
name: 'unblock-netease-cloud-music',
description: '点亮网易云音乐灰色歌曲',
script: './app.js', // 入口文件路径
scriptOptions:'-p 52100:52101 -e https://music.163.com/', // 可选参数示例: 自定义端口并开启HTTPS
// scriptOptions: '-o kugou kuwo youtube youtubedl ytdlp bilibili pyncmd', // 可选参数
wait: '1', // 程序崩溃后重启时间间隔
grow: '0.25', // 重启等待时间成长值,第一次1秒,第二次1.25秒。。。
maxRestarts: '40', // 60秒内最大重启次数
env: [
{
name: 'ENABLE_FLAC',
value: 'true',
},
{
name: 'ENABLE_LOCAL_VIP',
value: 'svip',
},
],
});
// 监听
svc.on('install', () => {
svc.start();
console.log('Installation completed.');
});
svc.on('uninstall', () => console.log('Uninstallation completed.'));
// 卸载
if (svc.exists) return svc.uninstall();
// 安装
svc.install();
日志文件:err.log文件输出为空
out.log文件输出如下:
INFO: (app) HTTP Server running @ http://0.0.0.0:52100
INFO: (app) HTTPS Server running @ http://0.0.0.0:52101
INFO: (app) HTTP Server running @ http://0.0.0.0:52100
INFO: (app) HTTPS Server running @ http://0.0.0.0:52101
Beta Was this translation helpful? Give feedback.
All reactions