diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-03 01:44:24 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-03 01:44:24 +0000 |
commit | 99dc566c18b2c54b6b8c598638d0f3784f083321 (patch) | |
tree | 86c1a1c704a06aef028d9725a1b4e208200ae32b /src | |
parent | 88e2a09c225ecb5196cb640673c9f67f999f8ef0 (diff) | |
download | tor-99dc566c18b2c54b6b8c598638d0f3784f083321.tar tor-99dc566c18b2c54b6b8c598638d0f3784f083321.tar.gz |
Add examples for hidden services
svn:r1453
Diffstat (limited to 'src')
-rw-r--r-- | src/config/torrc.sample.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/config/torrc.sample.in b/src/config/torrc.sample.in index 34c27d409..d9016165e 100644 --- a/src/config/torrc.sample.in +++ b/src/config/torrc.sample.in @@ -30,3 +30,16 @@ SocksBindAddress 127.0.0.1 # accept connections only from localhost #ExitPolicy accept 18.244.0.188:25,accept 18.244.0.114:25 #ExitPolicy reject *:* +##################### Below is just for location-hidden services ### + +## This stuff is so bleeding-edge that my teeth hurt just thinking +## about it. + +#HiddenServiceDirectory /tmp/hidden_service/ +#HiddenServicePort 80 127.0.0.1:80 +#HiddenServicePort 22 127.0.0.1:22 +#HiddenServiceNodes moria1,moria2 +#HiddenServiceExcludeNodes bad,other_bad + +#HiddenServiceDirectory /tmp/other_hidden_service/ +#HiddenServicePort 80 127.0.0.1:80 |