Guest User

Untitled

a guest
Apr 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. # This is an example resource file for rTorrent. Copy to
  2. # ~/.rtorrent.rc and enable/modify the options as needed. Remember to
  3. # uncomment the options you wish to enable.
  4.  
  5. # Maximum and minimum number of peers to connect to per torrent.
  6. #min_peers = 40
  7. max_peers = 100
  8.  
  9. # Same as above but for seeding completed torrents (-1 = same as downloading)
  10. min_peers_seed = -1
  11. max_peers_seed = -1
  12.  
  13. # Maximum number of simultanious uploads per torrent.
  14. max_uploads = 50
  15.  
  16. # Global upload and download rate in KiB. "0" for unlimited.
  17. #download_rate = 0
  18. #upload_rate = 0
  19.  
  20. # Default directory to save the downloaded torrents.
  21. directory = /share/Downloads/
  22.  
  23. # Default session directory. Make sure you don't run multiple instance
  24. # of rtorrent using the same session directory. Perhaps using a
  25. # relative path?
  26. session = /home/harald/rtorrent/.session
  27.  
  28. # Watch a directory for new torrents, and stop those that have been
  29. # deleted.
  30. schedule = watch_directory,5,5,load_start=/home/harald/rtorrent/watchfolder/*.torrent
  31. #schedule = tied_directory,10,10,start_tied=
  32. schedule = untied_directory,5,5,stop_untied=
  33.  
  34. # Enable the default ratio group.
  35. ratio.enable=
  36.  
  37. # Change the limits, the defaults should be sufficient.
  38. ratio.min.set=300
  39. ratio.max.set=300
  40.  
  41. # Changing the command triggered when the ratio is reached.
  42. system.method.set = group.seeding.ratio.command, d.close=
  43.  
  44. # Close torrents when diskspace is low.
  45. schedule = low_diskspace,5,60,close_low_diskspace=1000M
  46.  
  47. # The ip address reported to the tracker.
  48. #ip = 127.0.0.1
  49. #ip = rakshasa.no
  50.  
  51. # The ip address the listening socket and outgoing connections is
  52. # bound to.
  53. #bind = 127.0.0.1
  54. #bind = rakshasa.no
  55.  
  56. # Port range to use for listening.
  57. #port_range = 6890-6999
  58. port_range = 6894-6894
  59.  
  60. # Start opening ports at a random position within the port range.
  61. #port_random = no
  62.  
  63. # Check hash for finished torrents. Might be usefull until the bug is
  64. # fixed that causes lack of diskspace not to be properly reported.
  65. #check_hash = no
  66.  
  67. # Set whetever the client should try to connect to UDP trackers.
  68. #use_udp_trackers = yes
  69. use_udp_trackers = no
  70.  
  71. # Alternative calls to bind and ip that should handle dynamic ip's.
  72. #schedule = ip_tick,0,1800,ip=rakshasa
  73. #schedule = bind_tick,0,1800,bind=rakshasa
  74.  
  75. # Encryption options, set to none (default) or any combination of the following:
  76. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  77. #
  78. # The example value allows incoming encrypted connections, starts unencrypted
  79. # outgoing connections but retries with encryption if they fail, preferring
  80. # plaintext to RC4 encryption after the encrypted handshake
  81. #
  82. # encryption = allow_incoming,enable_retry,prefer_plaintext
  83. #encryption = allow_incoming,try_outgoing,require_RC4
  84. encryption = allow_incoming,enable_retry,prefer_plaintext
  85.  
  86. # Enable DHT support for trackerless torrents or when all trackers are down.
  87. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  88. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  89. # The default is "off". For DHT to work, a session directory must be defined.
  90. #
  91. # dht = auto
  92. dht = off
  93.  
  94. # UDP port to use for DHT.
  95. #
  96. # dht_port = 6881
  97.  
  98. # Enable peer exchange (for torrents not marked private)
  99. #
  100. # peer_exchange = yes
  101. peer_exchange = no
  102.  
  103. #
  104. # Do not modify the following parameters unless you know what you're doing.
  105. #
  106.  
  107. # Hash read-ahead controls how many MB to request the kernel to read
  108. # ahead. If the value is too low the disk may not be fully utilized,
  109. # while if too high the kernel might not be able to keep the read
  110. # pages in memory thus end up trashing.
  111. #hash_read_ahead = 10
  112.  
  113. # Interval between attempts to check the hash, in milliseconds.
  114. #hash_interval = 100
  115.  
  116. # Number of attempts to check the hash while using the mincore status,
  117. # before forcing. Overworked systems might need lower values to get a
  118. # decent hash checking rate.
  119. #hash_max_tries = 10
  120.  
  121. scgi_port = localhost:5000
Add Comment
Please, Sign In to add comment