Advertisement
Localizator

.rtorrent.rc

Jan 6th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.07 KB | None | 0 0
  1. # gui
  2. scgi_port = 127.0.0.1:5000
  3. encoding_list = UTF-8
  4.  
  5. # Мінімальна кількість пірів на один торрент (якщо їх буде менше, програма буде намагатися збільшити їх число до заданого)
  6. min_peers = 100
  7. min_peers_seed = 50
  8.  
  9. # Максимальна кількість активних торрентів на віддачу
  10. max_uploads = 30
  11.  
  12. # Максимальна швидкість на завантаження і віддачу
  13. download_rate = 1500
  14. upload_rate = 300
  15.  
  16. # Коренева тека для завантаження файлів
  17. directory = /mnt/vol2
  18. session = /mnt/vol2/torrents/session
  19.  
  20. port_range = 6789-6789
  21. port_random = no
  22.  
  23. check_hash = yes
  24. peer_exchange = yes
  25. check_hash = yes
  26. use_udp_trackers = yes
  27. encryption = allow_incoming,enable_retry,prefer_plaintext
  28. dht = auto
  29. dht.port.set = 2442
  30.  
  31. # Завершення програми при нестачі вільного місця
  32. schedule = low_diskspace,5,60,close_low_diskspace=500M
  33.  
  34. # Автоматичне завантаження торрентів
  35. schedule = watch_directory_1,5,5,"load_start=/mnt/vol2/torrents/auto/anime/*.torrent,d.set_directory=/mnt/vol2/anime"
  36. schedule = watch_directory_2,5,5,"load_start=/mnt/vol2/torrents/auto/films/*.torrent,d.set_directory=/mnt/vol2/films"
  37. schedule = watch_directory_3,5,5,"load_start=/mnt/vol2/torrents/auto/games/*.torrent,d.set_directory=/mnt/vol2/games"
  38. schedule = watch_directory_4,5,5,"load_start=/mnt/vol2/torrents/auto/music/*.torrent,d.set_directory=/mnt/vol2/music"
  39. schedule = watch_directory_5,5,5,"load_start=/mnt/vol2/torrents/auto/soft/*.torrent,d.set_directory=/mnt/vol2/soft"
  40.  
  41. # Прибираємо ліміт на завантаження і віддачу з 2 години ночі...
  42. schedule = throttle_1,02:00:00,24:00:00,download_rate=0
  43. schedule = throttle_2,02:00:00,24:00:00,upload_rate=0
  44.  
  45. # ...до 9 ранку.
  46. schedule = throttle_3,09:00:00,24:00:00,download_rate=1000
  47. schedule = throttle_4,09:00:00,24:00:00,upload_rate=200
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement