Advertisement
Guest User

apache

a guest
Jan 26th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1.  
  2. # The ip address the listening socket and outgoing connections is
  3. # bound to.
  4. #bind = 127.0.0.1
  5. #bind = rakshasa.no
  6.  
  7. # Port range to use for listening.
  8. port_range = 55950-56000
  9.  
  10. # Start opening ports at a random position within the port range.
  11. port_random = yes
  12.  
  13. # Check hash for finished torrents. Might be usefull until the bug is
  14. # fixed that causes lack of diskspace not to be properly reported.
  15. check_hash = yes
  16.  
  17. # Set whether the client should try to connect to UDP trackers.
  18. trackers.use_udp.set = yes
  19.  
  20. # Alternative calls to bind and ip that should handle dynamic ip's.
  21. #schedule = ip_tick,0,1800,ip=rakshasa
  22. #schedule = bind_tick,0,1800,bind=rakshasa
  23.  
  24. # Encryption options, set to none (default) or any combination of the following:
  25. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  26. #
  27. # The example value allows incoming encrypted connections, starts unencrypted
  28. # outgoing connections but retries with encryption if they fail, preferring
  29. # plaintext to RC4 encryption after the encrypted handshake
  30. #
  31. encryption = allow_incoming,enable_retry,prefer_plaintext
  32.  
  33. # Enable DHT support for trackerless torrents or when all trackers are down.
  34. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  35. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  36. # The default is "off". For DHT to work, a session directory must be defined.
  37. #
  38. dht = disable
  39.  
  40. # UDP port to use for DHT.
  41. #
  42. # dht_port = 6881
  43.  
  44. # Enable peer exchange (for torrents not marked private)
  45. #
  46. protocol.pex.set = 0
  47.  
  48. scgi_port = 127.0.0.1:5000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement