Aria2+Nginx在VPS搭建离线下载服务器

  • 此文章是自己搭建简易的VPS离线下载服务器的简易教程
  • 目前我做了一个docker file,用docker的同学可以试试:aria2-nginx-alpine-webui [强烈推荐使用,不需要这么麻烦配置]
  • 不定时更新更新此文......

系统环境

  • Ubuntu 16.04
  • 以下内容系统登录后操作用户默认为ROOT用户

下载安装Aria2 & Nginx

  • 更新资源库
    apt update
  • 安装Aria2
    apt install aria2
  • 安装Nginx服务器
    apt install nginx

配置Aria2

  • 创建Aria2配置文件
    cd ~
    mkdir .aria2
    cd aria2
    touch aria2.conf
    touch aria2.session
  • 编辑Aria2配置文件
    创建下载文件夹路径
    mkdir ~/Download
    编辑Aria2配置文件
    vi ~/.aria2/aria2.conf
    加入以下内容,部分设置根据需要自行修改:
##### RPC Options ##### 
# 开启JSON-RPC/XML-RPC服务,从而能够通过其接口控制aria2,默认为true 
enable-rpc=true 
# 指定访问端口号,默认6800 
rpc-listen-port=6800 
# 允许所有访问来源,web控制界面跨域需要,默认false 
rpc-allow-origin-all=true 
# 允许除local loopback以外的网卡访问,默认false,远程控制需要 
rpc-listen-all=true 
# 外部访问安全令牌,强烈建议设置token并记住 (修改成自己的安全令牌)
rpc-secret=hdfg159 
# 若不设置token,也可通过用户名密码访问,现版本不建议使用 
# rpc-user=<username> 
# rpc-passwd=<passwd> 
##### Advance Options ##### 
#以守护进程方式后台运行,默认为false,也可在启动aria2c时加上-D选项达到相同效果 
daemon=true
# 磁盘缓存,可设为0禁用,默认16M。 
disk-cache=16M 
# 磁盘空间分配模式,可选none,prealloc,trunc,falloc,默认prealloc 
# 若完整分配,官方建议ext4、NTFS使用falloc快速分配,可以瞬间完成分配 
#FAT32、ext3建议使用prealloc,如果此时使用falloc分配时间和prealloc相当,分配时会造成aria2卡顿 
file-allocation=falloc 
#使用会话文件保存信息,并能够从意外错误(断电等)错误中恢复(上一步骤创建的Session文件) 
save-session=/root/.aria2/aria2.session 
# 指定开启时读取会话文件的位置 (上一步骤创建的Session文件)
input-file=/root/.aria2/aria2.session 
# 定期保存会话,默认0为只在退出时保存 
save-session-interval=60 
##### Basic Options ##### 
# 下载路径 (注意:此目录不存在需要自行去创建)
dir=/root/Download 
# 最大同时下载任务数量,默认为5 
max-concurrent-downloads=20
#若下载速度低于此值(Byte/s),会被自动暂停,速度可以有K或M等后缀,对BT下载无效 #lowest-speed-limit=0 
# 每个下载任务对单个服务器最大的链接数量,默认为1 
max-connection-per-server=10
# 任务分块大小,当下载文件大小大于两倍于此设置时,会被分块下载,默认20M 
min-split-size=20M 
# 任务分块数量,默认为5 
split=10
  • 创建Aria2开机脚本(Ubuntu适用)
    打开vi文本编辑器
    vi
    插入以下内容:
[Unit]
Description=Aria2
After=syslog.target
After=network.target

[Service]
Type=forking
ExecStart=/usr/bin/aria2c
Restart=always

[Install]
WantedBy=multi-user.target

   保存路径:
   /etc/systemd/system/aria2.service
   启用并运行:
   systemctl enable aria2.service && systemctl start aria2.service

  • 下载 webui-aria2
    放置到合适的路径,我的是/root/webui-aria2
    或者git clone下来:
    apt install git
    git clone https://github.com/ziahamza/webui-aria2.git

  • 配置Nginx
    下载后需要找到相应的离线文件下载到本地,自然要用Nginx配置一个可以浏览下载服务器文件夹的路径(当然你也可以用其他服务器)。
    vi /etc/nginx/nginx.conf
    在http段添加以下内容

    server {
        listen 80;
        server_name <你的服务器ip地址>;
        
        location /aria2/download {
            #这是你离线文件存放的位置
            alias /root/Download;
            autoindex on;
            autoindex_exact_size off;
            autoindex_localtime on; 
            charset utf-8,gbk;
        }
        
        location /aria2/home {
            #这是你刚才下载webui-aria2解压的位置
            alias /root/webui-aria2/docs;
            index index.html
            charset utf-8,gbk;
        }
    }

  我的完整配置如下:

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    server {
        listen 80;
        server_name 服务器ip;
        
        location /aria2/download {
            alias /root/Download;
            autoindex on;
            autoindex_exact_size off;
            autoindex_localtime on; 
            charset utf-8,gbk;
        }
        
        location /aria2/home {
            alias /root/webui-aria2/docs;
            index index.html
            charset utf-8,gbk;
        }
    }

    include /etc/nginx/conf.d/*.conf;
    #include /etc/nginx/sites-enabled/*;
}


#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
# 
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}

  保存文件并重启Nginx
  systemctl stop nginx.service && systemctl start nginx.service

设置定时任务

因为不提供文件删除功能,只能够手动清理离线下载的问题。
现在简单说一下定时任务的配置,具体用法请看:
http://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/crontab.html

  • 编辑定时任务
    crontab -e
  • 在末尾添加一下内容(意思是:设置每两天的0点0分清空文件夹内容)
    0 0 */2 * * rm -rf /root/Download/*
    -查看定时任务配置
    crontab -l
    显示我的配置如下:
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command
0 0 */2 * * rm -rf /root/Download/*

最后

访问你的服务器ip/aria2/home就可以访问aria2 webui了,例如127.0.0.1/aria2/home;
访问服务器离线下载文件地址:你的服务器ip/aria2/download,例如127.0.0.1/aria2/download

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容