aria2搭建简单笔记

启动命令参考

启动并且对外监听,关闭跨域允许访问,并设设置 secret

 aria2c --enable-rpc --rpc-listen-all    --rpc-secret <密码>   --rpc-allow-origin-all   

客户端

Web AriaNg

https://github.com/mayswind/AriaNg

部署版本可以选择

https://github.com/mayswind/AriaNg/releases 的 AllInOne 版本

加速

TrackersListCollection

https://github.com/XIU2/TrackersListCollection/blob/master/README-ZH.md

可以查看关于 Aria2 部分

systemd 作为系统启动部分

aria2.service

[Unit]
Description=Run aria2c download server

[Service]
ExecStart=/usr/bin/aria2c --enable-rpc --rpc-listen-all    --rpc-secret <secret>   --rpc-allow-origin-all

[Install]
WantedBy=default.target

Nginx部署静态web

http {
  ....


  server {
    listen  9002;
    server_name localhost;
    root /path/to/AriaNg; // 填写目录地址
    index index.html;

    location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|js|pdf|txt){
      root /path/to/AriaNg; // 填写目录地址
    } 
  }


}

Mark24

Everything can Mix.