Advertisement
Guest User

Untitled

a guest
Oct 18th, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. # For information on options, see the transmission-daemon(1) man page.
  2. #
  3. # The commented variables in this file are the defaults that are used
  4. # in the init-script. You don't need to uncomment them except to
  5. # customize them to different values.
  6.  
  7. #
  8. # ----- MAIN CONFIGURATION -----
  9. #
  10.  
  11. # The folder where Transmission stores its config and .torrent files
  12. # TR_HOME=/var/transmission/config
  13.  
  14. # The folder where Transmission stores downloads
  15. # TR_DOWNLOAD=/var/transmission/downloads
  16.  
  17. # The port Transmission uses to connect to other peers
  18. # TR_PORT=54318
  19.  
  20. # The name of the user that runs transmission-daemon and owns the files
  21. # TR_USERNAME=nobody
  22.  
  23. # Login credentials for the Web- and the RPC-interface
  24. # - default: leave commented/empty to disable access authentication
  25. # REMOTE_USER=""
  26. # REMOTE_PASS=""
  27. # - alternative: set a user name and password
  28. # REMOTE_USER=admin
  29. # REMOTE_PASS=password
  30.  
  31. #
  32. # ----- ADVANCED OPTIONS -----
  33. #
  34.  
  35. # Acces control lists
  36. # (machines/networks allowed/denied to control transmission -- comma separated)
  37. # TR_ACL="+127.0.0.1"
  38. # or (for versions 1.4x -- different syntax)
  39. # TR_ACL="127.0.0.1"
  40.  
  41. # Enable use of block lists
  42. # (read the Wiki about what else needs to be done)
  43. # TR_BLOCK=no
  44.  
  45. # Control port used
  46. # only privileged users can use ports < 1024, this applies to TR_USERNAME
  47. # CTL_PORT=9091
  48.  
  49. # Initial speed limits (in K/s)
  50. # default: no limits? 100/100 seems to be the hardcoded default
  51. # TR_UP_SPEED=unlimited
  52. # TR_DN_SPEED=unlimited
  53.  
  54. # Peer exchange
  55. # TR_PX=no
  56.  
  57. # Port mapping using NAT/UPnP
  58. # TR_PMAP=no
  59.  
  60. # Encryption
  61. # Any of :
  62. # TR_ENCRYPT=tolerated
  63. # TR_ENCRYPT=prefered
  64. # TR_ENCRYPT=required
  65.  
  66. # Overall peer limit.
  67. # TR_PEERS=240
  68.  
  69. # Peer limit per torrent.
  70. # TR_PPT=60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement