| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | ## Logs go to stdout at level "notice" unless redirected by something## else, like one of the below lines. You can have as many Log lines as## you want.#### We advise using "notice" in most cases, since anything more verbose## may provide sensitive information to an attacker who obtains the logs.#### Send all messages of level 'notice' or higher to /var/log/tor/notices.log# Log notice file /var/log/tor/notices.logLog notice file /dev/stdout## Send every possible message to /var/log/tor/debug.log#Log debug file /var/log/tor/debug.log## Use the system log instead of Tor's logfiles#Log notice syslog## To send all messages to stderr:#Log debug stderr## The directory for keeping all the keys/etc. By default, we store## things in $HOME/.tor on Unix, and in Application Data\tor on Windows.DataDirectory /var/lib/tor## The port on which Tor will listen for local connections from Tor## controller applications, as documented in control-spec.txt.#ControlPort 9051## If you enable the controlport, be sure to enable one of these## authentication methods, to prevent attackers from accessing it.#HashedControlPassword 16:872860B76453A77D60CA2BB8C1A7042072093276A3D701AD684053EC4C#CookieAuthentication 1############### This section is just for location-hidden services ##### Once you have configured a hidden service, you can look at the## contents of the file ".../hidden_service/hostname" for the address## to tell people.#### HiddenServicePort x y:z says to redirect requests on port x to the## address y:z.#HiddenServiceDir /var/lib/tor/hidden_service/#HiddenServicePort 80 127.0.0.1:80#HiddenServiceDir /var/lib/tor/other_hidden_service/#HiddenServicePort 80 127.0.0.1:80#HiddenServicePort 22 127.0.0.1:22HiddenServiceDir /var/lib/tor/web/HiddenServiceVersion 3HiddenServicePort 80 web:80## Configuration options can be imported from files or folders using the %include## option with the value being a path. If the path is a file, the options from the## file will be parsed as if they were written where the %include option is. If## the path is a folder, all files on that folder will be parsed following lexical## order. Files starting with a dot are ignored. Files on subfolders are ignored.## The %include option can be used recursively.#%include /etc/torrc.d/#%include /etc/torrc.custom
 |