Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. # Maximum and minimum number of peers to connect to per torrent.
  2. min_peers = 40
  3. max_peers = 100
  4.  
  5. # Same as above but for seeding completed torrents (-1 = same as downloading)
  6. min_peers_seed = 25
  7. max_peers_seed = 60
  8.  
  9. # Maximum number of simultaneous uploads per torrent.
  10. max_uploads = 30
  11.  
  12. # Global upload and download rate in KiB. "0" for unlimited.
  13. #download_rate = 0
  14. #upload_rate = 0
  15.  
  16. # Default directory to save the downloaded torrents.
  17. directory = /home/downloads
  18.  
  19. # Default session directory. Make sure you don't run multiple instance
  20. # of rtorrent using the same session directory. Perhaps using a
  21. # relative path?
  22. session = /home/downloads/.session
  23.  
  24. # Watch a directory for new torrents, and stop those that have been
  25. # deleted.
  26. schedule = watch_directory,5,5,load_start=/home/downloads/~watch/*.torrent
  27.  
  28. # Close torrents when diskspace is low.
  29. schedule = low_diskspace,5,60,close_low_diskspace=10240M
  30.  
  31. # The ip address reported to the tracker.
  32. #ip = 127.0.0.1
  33. #ip = rakshasa.no
  34.  
  35. # The ip address the listening socket and outgoing connections is
  36. # bound to.
  37. #bind = 127.0.0.1
  38. #bind = rakshasa.no
  39.  
  40. # Port range to use for listening.
  41. port_range = 55950-56000
  42.  
  43. # Start opening ports at a random position within the port range.
  44. port_random = yes
  45.  
  46. # Check hash for finished torrents. Might be usefull until the bug is
  47. # fixed that causes lack of diskspace not to be properly reported.
  48. check_hash = yes
  49.  
  50. # Set whether the client should try to connect to UDP trackers.
  51. trackers.use_udp.set = yes
  52.  
  53. # Alternative calls to bind and ip that should handle dynamic ip's.
  54. #schedule = ip_tick,0,1800,ip=rakshasa
  55. #schedule = bind_tick,0,1800,bind=rakshasa
  56.  
  57. # Encryption options, set to none (default) or any combination of the following:
  58. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  59. #
  60. # The example value allows incoming encrypted connections, starts unencrypted
  61. # outgoing connections but retries with encryption if they fail, preferring
  62. # plaintext to RC4 encryption after the encrypted handshake
  63. #
  64. encryption = allow_incoming,enable_retry,prefer_plaintext
  65.  
  66. # Enable DHT support for trackerless torrents or when all trackers are down.
  67. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  68. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  69. # The default is "off". For DHT to work, a session directory must be defined.
  70. #
  71. dht = disable
  72.  
  73. # UDP port to use for DHT.
  74. #
  75. # dht_port = 6881
  76.  
  77. # Enable peer exchange (for torrents not marked private)
  78. #
  79. protocol.pex.set = 0
  80.  
  81. scgi_port = 127.0.0.1:5000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement