diff options
author | Jesse Barton <jessebarton95@gmail.com> | 2022-12-22 11:35:18 -0600 |
---|---|---|
committer | Jesse Barton <jessebarton95@gmail.com> | 2023-04-07 12:31:58 -0500 |
commit | 499c46439418237a77c2a764cde47ad8dc893b0f (patch) | |
tree | beea1099e5ffafafec7be2d6257b451720ab8bf4 /doc | |
parent | 6d40a1a7e7f09ff2c32e53237f968adf8300d028 (diff) |
doc: update DataDirectoryGroupReadable 1 in tor.md
Move DataDirectoryGroupReadable 1 up a few lines to more clearly
communicate that it is required for the filesystem group to read the
DataDirectory.
Per the Tor documentation
https://2019.www.torproject.org/docs/tor-manual.html.en#DataDirectoryGroupReadable
"If this option is set to 0, don’t allow the filesystem group to read
the DataDirectory. If the option is set to 1, make the DataDirectory
readable by the default GID. (Default: 0)"
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tor.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/doc/tor.md b/doc/tor.md index 08d031d084..581d124f7a 100644 --- a/doc/tor.md +++ b/doc/tor.md @@ -92,19 +92,13 @@ out by default (if not, add them): ControlPort 9051 CookieAuthentication 1 CookieAuthFileGroupReadable 1 +DataDirectoryGroupReadable 1 ``` Add or uncomment those, save, and restart Tor (usually `systemctl restart tor` or `sudo systemctl restart tor` on most systemd-based systems, including recent Debian and Ubuntu, or just restart the computer). -On some systems (such as Arch Linux), you may also need to add the following -line: - -``` -DataDirectoryGroupReadable 1 -``` - ### Authentication Connecting to Tor's control socket API requires one of two authentication |