.axelrc 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. ############################################################################
  2. ## ##
  3. ## Example configuration file for Axel - A light download accelerator ##
  4. ## ##
  5. ############################################################################
  6. # reconnect_delay sets the number of seconds before trying again to build
  7. # a new connection to the server.
  8. #
  9. reconnect_delay = 20
  10. # You can set a maximum speed (bytes per second) here, Axel will try to be
  11. # at most 5% faster or 5% slower.
  12. #
  13. # max_speed = 0
  14. # You can set the maximum number of connections Axel will try to set up
  15. # here. There's a value precompiled in the program too, setting this too
  16. # high requires recompilation. PLEASE respect FTP server operators and other
  17. # users: Don't set this one too high!!! 4 is enough in most cases.
  18. #
  19. num_connections = 8
  20. # If no data comes from a connection for this number of seconds, abort (and
  21. # resume) the connection.
  22. #
  23. connection_timeout = 45
  24. # Set proxies. no_proxy is a comma-separated list of domains which are
  25. # local, axel won't use any proxy for them. You don't have to specify full
  26. # hostnames there.
  27. #
  28. # Note: If the HTTP_PROXY environment variable is set correctly already,
  29. # you don't have to set it again here. The setting should be in the same
  30. # format as the HTTP_PROXY var, like 'http://host.domain.com:8080/',
  31. # although a string like 'host.domain.com:8080' should work too..
  32. #
  33. # Sometimes HTTP proxies support FTP downloads too, so the proxy you
  34. # configure here will be used for FTP downloads too.
  35. #
  36. # If you have to use a SOCKS server for some reason, the program should
  37. # work perfectly through socksify without even knowing about that server.
  38. # I haven't tried it myself, so I would love to hear from you about the
  39. # results.
  40. #
  41. # http_proxy =
  42. # no_proxy =
  43. # Keep CGI arguments in the local filename?
  44. #
  45. strip_cgi_parameters = 1
  46. # When downloading a HTTP directory/index page, (like http://localhost/~me/)
  47. # what local filename do we have to store it in?
  48. #
  49. default_filename = default
  50. # Save state every x seconds. Set this to 0 to disable state saving during
  51. # download. State files will always be saved when the program terminates
  52. # (unless the download is finished, of course) so this is only useful to
  53. # protect yourself against sudden system crashes.
  54. #
  55. save_state_interval = 10
  56. # Buffer size: Maximum amount of bytes to read from a connection. One single
  57. # buffer is used for all the connections (no separate per-connection buffer).
  58. # A smaller buffer might improve the accuracy of the speed limiter, but a
  59. # larger buffer is a better choice for fast connections.
  60. #
  61. buffer_size = 5120
  62. # By default some status messages about the download are printed. You can
  63. # disable this by setting this one to zero.
  64. #
  65. # verbose = 1
  66. # FTP searcher
  67. #
  68. # search_timeout - Maximum time (seconds) to wait for a speed test
  69. # search_threads - Maximum number of speed tests at once
  70. # search_amount - Number of URL's to request from filesearching.com
  71. # search_top - Number of different URL's to use for download
  72. #
  73. search_timeout = 10
  74. search_threads = 3
  75. search_amount = 15
  76. search_top = 3
  77. # If you have multiple interfaces to the Internet, you can make Axel use all
  78. # of them by listing them here (interface name or IP address). If one of the
  79. # interfaces is faster than the other(s), you can list it more than once and
  80. # it will be used more often.
  81. #
  82. # This option is blank by default, which means Axel uses the first match in
  83. # the routing table.
  84. #
  85. # interfaces =
  86. # If you don't like the wget-alike interface, you can set this to 1 to get
  87. # a scp-alike interface.
  88. #
  89. alternate_output = 1