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"
|
||||
] ++ 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;
|
||||
|
|
Loading…
Reference in New Issue