Created
October 8, 2020 04:43
-
-
Save playniuniu/40420cd43f8bbe6c108b9732d2d46d5b to your computer and use it in GitHub Desktop.
aria2c conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # set your own path | |
| dir=/data/aria2 | |
| disk-cache=32M | |
| file-allocation=trunc | |
| continue=true | |
| max-concurrent-downloads=10 | |
| max-connection-per-server=16 | |
| min-split-size=10M | |
| split=5 | |
| max-overall-download-limit=0 | |
| #max-download-limit=0 | |
| #max-overall-upload-limit=0 | |
| #max-upload-limit=0 | |
| disable-ipv6=true | |
| save-session=/home/pi/.aria2/aria2.session | |
| input-file=/home/pi/.aria2/aria2.session | |
| save-session-interval=60 | |
| enable-rpc=true | |
| rpc-allow-origin-all=true | |
| rpc-listen-all=true | |
| #rpc-secret=850406 | |
| #event-poll=select | |
| #rpc-listen-port=6800 | |
| # for PT user please set to false | |
| enable-dht=true | |
| enable-dht6=true | |
| enable-peer-exchange=true | |
| # for increasing BT speed | |
| listen-port=51413 | |
| #follow-torrent=true | |
| #bt-max-peers=55 | |
| #dht-listen-port=6881-6999 | |
| #bt-enable-lpd=false | |
| #bt-request-peer-speed-limit=50K | |
| peer-id-prefix=-TR2770- | |
| user-agent=Transmission/2.77 | |
| seed-ratio=0 | |
| #force-save=false | |
| #bt-hash-check-seed=true | |
| bt-seed-unverified=true | |
| bt-save-metadata=true | |
| bt-tracker=udp://tracker.coppersurfer.tk:6969/announce,udp://tracker.opentrackr.org:1337/announce,udp://9.rarbg.to:2710/announce,udp://9.rarbg.me:2710/announce,udp://tracker.leechers-paradise.org:6969/announce,udp://tracker.cyberia.is:6969/announce,udp://tracker.internetwarriors.net:1337/announce,udp://exodus.desync.com:6969/announce,udp://explodie.org:6969/announce,udp://tracker3.itzmx.com:6961/announce,http://tracker1.itzmx.com:8080/announce,udp://tracker.tiny-vps.com:6969/announce,udp://open.stealth.si:80/announce,udp://tracker.torrent.eu.org:451/announce,udp://tracker.ds.is:6969/announce,udp://retracker.lanta-net.ru:2710/announce,http://open.acgnxtracker.com:80/announce,udp://tracker.moeking.me:6969/announce,udp://ipv4.tracker.harry.lu:80/announce,udp://zephir.monocul.us:6969/announce |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Aria2 Service | |
| After=network.target | |
| [Service] | |
| User=pi | |
| ExecStart=/usr/bin/aria2c --conf-path=/home/pi/.aria2/aria2.config | |
| [Install] | |
| WantedBy=default.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment