docker – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 # Maximum and minimum number of peers to connect to per torrent
2 throttle.min_peers.normal.set = 1
3 throttle.max_peers.normal.set = 100
4  
5 # Same as above but for seeding completed torrents (-1 = same as downloading)
6 throttle.min_peers.seed.set = 1
7 throttle.max_peers.seed.set = 50
8  
9 # Maximum number of simultanious uploads per torrent
10 throttle.max_uploads.set = 15
11  
12 # Global upload and download rate in KiB. "0" for unlimited
13 throttle.global_down.max_rate.set_kb = 0
14 throttle.global_up.max_rate.set_kb = 0
15  
16 # Enable DHT support for trackerless torrents or when all trackers are down
17 # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
18 # "auto" (start and stop DHT as needed), or "on" (start DHT immediately)
19 dht.mode.set = auto
20  
21 # Enable peer exchange (for torrents not marked private)
22 protocol.pex.set = yes
23  
24 # Check hash for finished torrents. Might be usefull until the bug is
25 # fixed that causes lack of diskspace not to be properly reported
26 pieces.hash.on_completion.set = yes
27  
28 # Set whether the client should try to connect to UDP trackers
29 #trackers.use_udp.set = yes
30  
31 # Set the max amount of memory address space used to mapping file chunks. This refers to memory mapping, not
32 # physical memory allocation. Default: 1GB (max_memory_usage)
33 # This may also be set using ulimit -m where 3/4 will be allocated to file chunks
34 #pieces.memory.max.set = 1GB
35  
36 # Alternative calls to bind and ip that should handle dynamic ip's
37 #schedule2 = ip_tick,0,1800,ip=rakshasa
38 #schedule2 = bind_tick,0,1800,bind=rakshasa
39  
40 # Encryption options, set to none (default) or any combination of the following:
41 # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
42 protocol.encryption.set = allow_incoming,try_outgoing,enable_retry
43  
44 # Set the umask for this process, which is applied to all files created by the program
45 system.umask.set = 0022
46  
47 # Add a preferred filename encoding to the list
48 encoding.add = UTF-8
49  
50 # Watch a directory for new torrents, and stop those that have been deleted
51 directory.watch.added = (cat,(cfg.watch)), load.start
52 schedule2 = untied_directory, 5, 5, (cat,"stop_untied=",(cfg.watch),"*.torrent")
53  
54 # Close torrents when diskspace is low
55 schedule2 = monitor_diskspace, 15, 60, ((close_low_diskspace,1000M))
56  
57 # Move finished (no need Autotools/Automove plugin on ruTorrent)
58 method.insert = d.get_finished_dir, simple, "cat=$cfg.download_complete=,$d.custom1="
59 method.insert = d.move_to_complete, simple, "d.directory.set=$argument.1=; execute=mkdir,-p,$argument.1=; execute=mv,-u,$argument.0=,$argument.1=; d.save_full_session="
60 method.set_key = event.download.finished,move_complete,"d.move_to_complete=$d.data_path=,$d.get_finished_dir="