|
@@ -3501,6 +3501,13 @@ options_validate(or_options_t *old_options, or_options_t *options,
|
|
|
"upgrade your Tor controller as soon as possible.");
|
|
|
}
|
|
|
|
|
|
+ if (options->CookieAuthFileGroupReadable && !options->CookieAuthFile) {
|
|
|
+ log_warn(LD_CONFIG, "You set the CookieAuthFileGroupReadable but did "
|
|
|
+ "not configure a the path for the cookie file via "
|
|
|
+ "CookieAuthFile. This means your cookie will not be group "
|
|
|
+ "readable.");
|
|
|
+ }
|
|
|
+
|
|
|
if (options->UseEntryGuards && ! options->NumEntryGuards)
|
|
|
REJECT("Cannot enable UseEntryGuards with NumEntryGuards set to 0");
|
|
|
|