nixos/privoxy: add missing "/" to "forward-socks5" option

Without this, Privoxy will silently fail, meaning that no traffic
would be routed through Tor, giving users a false sense of privacy.
This commit is contained in:
Xinglu Chen 2021-03-28 21:16:55 +02:00
parent 943347687f
commit 273f5c38a3
No known key found for this signature in database
GPG Key ID: ACF50999A2FB5C79

View File

@ -242,7 +242,7 @@ in
"default.action"
] ++ optional cfg.inspectHttps (toString inspectAction);
} // (optionalAttrs cfg.enableTor {
forward-socks5 = "127.0.0.1:9063 .";
forward-socks5 = "/ 127.0.0.1:9063 .";
toggle = true;
enable-remote-toggle = false;
enable-edit-actions = false;