Install Aria2 WebUI

By default aria2 hanya mendukung CLI (Command Line Interface)

Install Git

sudo apt install git

Install Aria2

sudo apt install aria2

Jalankan Aria2 RPC Server di background

sudo aria2c --dir=/lokasi/hasil/download --enable-rpc=true --rpc-allow-origin-all=true --rpc-listen-all=true --rpc-listen-port=6800 --rpc-secret=PasswordAman -D

Download Aria2 WebUI

git clone https://github.com/ziahamza/webui-aria2.git

Simpan dan arahkan dimana kamu akan menyimpan SC sebagai web server nantinya

Arahkan Vritualhost Root Directory webserver ke ./docs

Edit file ./docs/app.js

Ubah

host: location.protocol.startsWith("http") ? location.hostname : "loclalhost"

Menjadi

host: location.protocol.startsWith("http") ? location.hostname : "IP Atau Domain yang mejalankan program aria2c"

Pada bagian

      .constant("$pageSize", 11)
      .constant("$authconf", {
        host: location.protocol.startsWith("http") ? location.hostname : "localhost",
        path: "/jsonrpc",
        port: 6800,
        encrypt: !1,
        auth: {},
        directURL: ""

Ubah menjadi

      .constant("$pageSize", 11)
      .constant("$authconf", {
        host: location.protocol.startsWith("http") ? location.hostname : "localhost",
        path: "/jsonrpc",
        port: 6800,
        encrypt: !1,
        auth: {token: 'PasswordAman'},
        directURL: ""

Buka webUI nya, dan klik Connetion Settings

Buat agar program aria2c berjalaan saat startup

sudo crontab -e

Masukkan baris berikut

@reboot aria2c --dir=/lokasi/hasil/download --enable-rpc=true --rpc-allow-origin-all=true --rpc-listen-all=true --rpc-listen-port=6800 --rpc-secret=PasswordAman -D