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:
parent
943347687f
commit
273f5c38a3
|
@ -242,7 +242,7 @@ in
|
||||||
"default.action"
|
"default.action"
|
||||||
] ++ optional cfg.inspectHttps (toString inspectAction);
|
] ++ optional cfg.inspectHttps (toString inspectAction);
|
||||||
} // (optionalAttrs cfg.enableTor {
|
} // (optionalAttrs cfg.enableTor {
|
||||||
forward-socks5 = "127.0.0.1:9063 .";
|
forward-socks5 = "/ 127.0.0.1:9063 .";
|
||||||
toggle = true;
|
toggle = true;
|
||||||
enable-remote-toggle = false;
|
enable-remote-toggle = false;
|
||||||
enable-edit-actions = false;
|
enable-edit-actions = false;
|
||||||
|
|
Loading…
Reference in New Issue