1 下载aria2
sudo apt install aria2
2 安装图形界面
git clone https://github.com/ziahamza/webui-aria2.git
3 修改配置 供局域网访问
修改webui-aria2/src/js/services/configuration.js中
host: location.protocol.startsWith('http') ? location.hostname : 'localhost'
改成host: location.protocol.startsWith('http') ? location.hostname : '0.0.0.0'
4 打开rpc,供网页和aria2交互
aria2c --enable-rpc --rpc-listen-all
5 开启网页
node node-server.js
浏览器中输入 192.168.31.66:8888 就可以访问了
网友评论