torrc.sample.in 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ## Configuration file for a typical tor user
  2. #
  3. # On Unix, Tor will look for this file in someplace like "~/.tor/torrc" or
  4. # "/etc/torrc"
  5. #
  6. # On Windows, Tor will look for the configuration file in someplace like
  7. # "Application Data\tor\torrc" or "Application Data\<username>\tor\torrc"
  8. ## Replace this with "SocksPort 0" if you don't want clients to connect.
  9. SocksPort 9050 # what port to advertise for application connections
  10. SocksBindAddress 127.0.0.1 # accept connections only from localhost
  11. #SocksBindAddress 192.168.0.1:9100 # listen on a chosen IP/port
  12. ## Entry policies to allow/deny SOCKS requests based on IP address.
  13. ## First entry that matches wins. If no SocksPolicy is set, we accept
  14. ## all (and only) requests from SocksBindAddress.
  15. #SocksPolicy accept 192.168.0.1/16
  16. #SocksPolicy reject *
  17. ## Allow no-name routers (ones that the dirserver operators don't
  18. ## know anything about) in only these positions in your circuits.
  19. ## Other choices (not advised) are entry,exit,introduction.
  20. AllowUnverifiedNodes middle,rendezvous
  21. ## Logs go to stdout at level "notice" unless redirected by something
  22. ## else, like one of the below lines.
  23. ## Send all messages of level 'warn' or higher to @LOCALSTATEDIR@/log/tor/warnings.log
  24. #Log warn file @LOCALSTATEDIR@/log/tor/warnings.log
  25. ## Send all debug and info messages to @LOCALSTATEDIR@/log/tor/debug.log
  26. #Log debug-info file @LOCALSTATEDIR@/log/tor/debug.log
  27. ## Send ONLY debug messages to @LOCALSTATEDIR@/log/tor/debug.log
  28. #Log debug-debug file @LOCALSTATEDIR@/log/tor/debug.log
  29. ## To use the system log instead of Tor's logfiles, uncomment these lines:
  30. #Log notice syslog
  31. ## To send all messages to stderr:
  32. #Log debug stderr
  33. ## Uncomment this to start the process in the background... or use
  34. ## --runasdaemon 1 on the command line.
  35. #RunAsDaemon 1
  36. ## Tor only trusts directories signed with one of these keys, and
  37. ## uses the given addresses to connect to the trusted directory
  38. ## servers. If no DirServer lines are specified, Tor uses the built-in
  39. ## defaults (moria1, moria2, tor26), so you can leave this alone unless
  40. ## you need to change it.
  41. #DirServer 18.244.0.188:9031 FFCB 46DB 1339 DA84 674C 70D7 CB58 6434 C437 0441
  42. #DirServer 18.244.0.114:80 719B E45D E224 B607 C537 07D0 E214 3E2D 423E 74CF
  43. #DirServer 62.116.124.106:9030 847B 1F85 0344 D787 6491 A548 92F9 0493 4E4E B85D
  44. ## The directory for keeping all the keys/etc. By default, we store
  45. ## things in $HOME/.tor on Unix, and in Application Data\tor on Windows.
  46. #DataDirectory @LOCALSTATEDIR@/lib/tor
  47. ############### This section is just for location-hidden services ###
  48. ## Look in .../hidden_service/hostname for the address to tell people.
  49. ## HiddenServicePort x y:z says to redirect a port x request from the
  50. ## client to y:z.
  51. #HiddenServiceDir @LOCALSTATEDIR@/lib/tor/hidden_service/
  52. #HiddenServicePort 80 127.0.0.1:80
  53. #HiddenServiceDir @LOCALSTATEDIR@/lib/tor/other_hidden_service/
  54. #HiddenServicePort 80 127.0.0.1:80
  55. #HiddenServicePort 22 127.0.0.1:22
  56. #HiddenServiceNodes moria1,moria2
  57. #HiddenServiceExcludeNodes bad,otherbad
  58. ################ This section is just for servers #####################
  59. ## NOTE: If you enable these, you should consider mailing your identity
  60. ## key fingerprint to the tor-ops, so we can add you to the list of
  61. ## servers that clients will trust. See the README for details.
  62. ## Required: A unique handle for this server
  63. #Nickname ididnteditheconfig
  64. ## The IP or fqdn for this server. Leave blank and Tor will guess.
  65. #Address noname.example.com
  66. ## Contact info that will be published in the directory, so we can
  67. ## contact you if you need to upgrade or if something goes wrong.
  68. ## This is optional but recommended.
  69. #ContactInfo Random Person <nobody@example.com>
  70. ## You might also include your PGP or GPG fingerprint if you have one:
  71. #ContactInfo 1234D/FFFFFFFF Random Person <nobody@example.com>
  72. ## Required: what port to advertise for tor connections
  73. #ORPort 9001
  74. ## If you want to listen on a port other than the one advertised
  75. ## in ORPort, uncomment the line below. You'll need to do ipchains
  76. ## or other port forwarding yourself to make this work.
  77. #ORBindAddress 0.0.0.0:9090
  78. ## Uncomment this to mirror the directory for others (please do)
  79. #DirPort 9030 # what port to advertise for directory connections
  80. ## If you want to listen on a port other than the one advertised
  81. ## in DirPort, uncomment the line below. You'll need to do ipchains
  82. ## or other port forwarding yourself to make this work.
  83. #DirBindAddress 0.0.0.0:9091
  84. ## A comma-separated list of exit policies. They're considered first
  85. ## to last, and the first match wins. If you want to *replace*
  86. ## the default exit policy, end this with either a reject *:* or an
  87. ## accept *:*. Otherwise, you're *augmenting* (prepending to) the
  88. ## default exit policy. Leave commented to just use the default.
  89. #ExitPolicy accept *:6660-6667
  90. #ExitPolicy reject 192.168.0.1:*
  91. #ExitPolicy reject *:*