Last active
May 3, 2017 03:53
-
-
Save adam1x/3de0527eefa8d96f78fe0afa439ba6bd to your computer and use it in GitHub Desktop.
aria2 config
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
| dir=${HOME}/Downloads | |
| # uncomment the following line if you are only using aria2 with rpc | |
| # input-file=${HOME}/.aria2/aria2.session | |
| save-session=${HOME}/.aria2/aria2.session | |
| save-session-interval=60 | |
| continue=true | |
| max-concurrent-downloads=3 | |
| max-connection-per-server=10 | |
| split=10 | |
| min-split-size=5M | |
| # apply timestamp of the remote file from the remote HTTP/FTP server | |
| remote-time=true | |
| # see https://aria2.github.io/manual/en/html/aria2c.html#cmdoption--stream-piece-selector | |
| stream-piece-selector=geom | |
| check-integrity=true | |
| # number of "file not found" status from the remote HTTP/FTP servers allowed | |
| max-file-not-found=5 | |
| # number of tries. 0 means unlimited | |
| max-tries=0 | |
| # seconds to wait between retries | |
| retry-wait=30 | |
| timeout=180 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment