diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-23 21:12:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-23 21:12:07 +0000 |
commit | 2bb2ef52cda6e411d8de63709844c6b794b2a09f (patch) | |
tree | fa43b9e92940a8d21fd0f6cc13a54c7b5a30dfc2 /doc/tor-hidden-service.html | |
parent | df1f7e6227246cbcea90f2535f96557a6aa4255e (diff) | |
download | tor-2bb2ef52cda6e411d8de63709844c6b794b2a09f.tar.gz tor-2bb2ef52cda6e411d8de63709844c6b794b2a09f.zip |
try harder to guess directory names that will work
svn:r4658
Diffstat (limited to 'doc/tor-hidden-service.html')
-rw-r--r-- | doc/tor-hidden-service.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/tor-hidden-service.html b/doc/tor-hidden-service.html index f25dee52e7..3dacc0d7e3 100644 --- a/doc/tor-hidden-service.html +++ b/doc/tor-hidden-service.html @@ -124,9 +124,15 @@ HiddenServicePort 80 www.google.com:80 </pre> <p>You're going to want to change the HiddenServiceDir line, so it -points to an actual directory that you have read/write access to. Fill -in your own username in place of "username". For -example, in Windows you might pick:</p> +points to an actual directory that is readable/writeable by the user that +will be running Tor. For example, if you're using the OS X Tor package, +you might pick:</p> +<pre> +HiddenServiceDir /Library/Tor/var/lib/tor/hidden_service/ +HiddenServicePort 80 www.google.com:80 +</pre> +<p>On Unix, try "/home/username/hidserv/" and fill in your own username +in place of "username". On Windows you might pick:</p> <pre> HiddenServiceDir C:\Documents and Settings\username\Application Data\hidden_service\ HiddenServicePort 80 www.google.com:80 |