Advertisement
RobbieL811

.rtorrent.rc

Dec 29th, 2015
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. #####################################################################
  2. #
  3. # The Seedbox From Scratch Script
  4. # By Notos ---> https://github.com/Notos/
  5. #
  6. #
  7. ######################################################################
  8. #
  9. # Copyright (c) 2013 Notos (https://github.com/Notos/)
  10. #
  11. # Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  16. #
  17. # --> Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
  18. #
  19. ######################################################################
  20. max_downloads_global = 0
  21. max_uploads_global = 0
  22. min_peers = 75
  23. max_peers = 200
  24. min_peers_seed = -1
  25. max_peers_seed = -1
  26.  
  27. max_uploads = 150
  28.  
  29. download_rate = 250000
  30. upload_rate = 250000
  31.  
  32. directory = /home/robbiel811/downloads/manual
  33.  
  34. session = /home/robbiel811/downloads/.session
  35. port_range = 51103-51103
  36. port_random = yes
  37.  
  38. # Directories
  39. schedule = watch_directory,5,5,load_start=/home/robbiel811/downloads/watch/*.torrent
  40. schedule = untied_directory,5,5,stop_untied=
  41. schedule = low_diskspace,5,10,close_low_diskspace=100M
  42.  
  43. # Networking
  44. # network.scgi.open_port = localhost:5000
  45. network.scgi.open_port = 127.0.0.1:51102
  46. # scgi_port = 127.0.0.1:5000
  47. network.http.ssl_verify_peer.set=0
  48.  
  49. use_udp_trackers = yes
  50. encryption = allow_incoming,try_outgoing,enable_retry
  51. #network.max_open_files.set = 384
  52. network.max_open_sockets.set = 512
  53. network.http.max_open.set = 250
  54. network.send_buffer.size.set = 1M
  55. network.receive_buffer.size.set = 500000
  56. dht = disable
  57. peer_exchange = no
  58.  
  59. check_hash = no
  60. pieces.preload.type.set = 1
  61. max_memory_usage = 6000M
  62.  
  63. # The following line initialises rutorrent plugins without needing to open the web interface
  64. execute = {sh,-c,/usr/bin/php /var/www/rutorrent/php/initplugins.php robbiel811 &}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement