Advertisement
Guest User

Arakasi

a guest
Dec 21st, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.51 KB | None | 0 0
  1. # This is the rtorrent configuration file installed by rtinst script - https://github.com/arakasi72/rtinst
  2. # This file is installed to ~/.rtorrent.rc
  3. # Enable/modify the options as needed, uncomment the options you wish to enable.
  4. # This configuration will work well with most systems, but optimal settings are dependant on specific server setup
  5.  
  6. # BitTorrent
  7. max_downloads_global = 0
  8. max_uploads_global = 0
  9. min_peers = 30
  10. max_peers = 150
  11. min_peers_seed = -1
  12. max_peers_seed = -1
  13. max_uploads = 150
  14. download_rate = 0
  15. upload_rate = 0
  16.  
  17. # Directories
  18. directory = /home/xylen/rtorrent/downloads
  19. session = /home/xylen/rtorrent/.session
  20. schedule = watch_directory,5,5,load_start=/home/xylen/rtorrent/watch/*.torrent
  21.  
  22. # Networking
  23. port_range = 51001-51250
  24. # network.scgi.open_port = localhost:5000
  25. network.scgi.open_port = 127.0.0.1:5000
  26. network.http.ssl_verify_peer.set=0
  27. port_random = yes
  28. use_udp_trackers = yes
  29. encryption = allow_incoming,enable_retry,prefer_plaintext
  30. network.max_open_files.set = 4096
  31. network.max_open_sockets.set = 1536
  32. network.http.max_open.set = 48
  33. network.send_buffer.size.set = 4M
  34. network.receive_buffer.size.set = 4M
  35. dht = disable
  36. peer_exchange = no
  37.  
  38.  
  39. # Memory Settings
  40. check_hash = no
  41. # hash_read_ahead = 30
  42. # hash_interval = 5
  43. # hash_max_tries = 5
  44. pieces.preload.type.set = 1
  45. max_memory_usage = 3500M
  46.  
  47. # The following line initialises rutorrent plugins without needing to open the web interface
  48. execute = {sh,-c,/usr/bin/php /var/www/rutorrent/php/initplugins.php xylen &}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement