Advertisement
Guest User

Untitled

a guest
Feb 1st, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 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, publi$
  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$
  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 = 1
  23. max_peers = 150
  24. min_peers_seed = 1
  25. max_peers_seed = 150
  26.  
  27. max_uploads = 150
  28.  
  29. download_rate = 0
  30. upload_rate = 0
  31.  
  32. directory = /home/speed/downloads/manual
  33.  
  34. session = /home/speed/downloads/.session
  35. port_range = 51103-51103
  36. port_random = yes
  37.  
  38. # Directories
  39. schedule = watch_directory,5,5,load_start=/home/speed/downloads/watch/*.torrent
  40. schedule = untied_directory,5,5,stop_untied=
  41. schedule = low_diskspace,5,10,close_low_diskspace=2000M
  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 = 191
  52. #network.max_open_sockets.set = 1536
  53. network.http.max_open.set = 32
  54. network.send_buffer.size.set = 1M
  55. network.receive_buffer.size.set = 1M
  56. dht = disable
  57. peer_exchange = no
  58.  
  59. check_hash = no
  60. pieces.preload.type.set = 1
  61. max_memory_usage = 3500M
  62.  
  63. system.file_allocate.set = yes
  64.  
  65. # The following line initialises rutorrent plugins without needing to open the web interface
  66. execute = {sh,-c,/usr/bin/php /var/www/rutorrent/php/initplugins.php speed &}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement