Difference between revisions of "Privoxy Tor"

From wiki.linuxonlinehelp.eu
Jump to navigation Jump to search
Line 14: Line 14:
 
forward          127.*.*.*/  .                      #Localhost connect
 
forward          127.*.*.*/  .                      #Localhost connect
 
</pre>
 
</pre>
 +
 +
==== Tor Node SET NO EXIT ====
 +
edit the /etc/tor/torrc
 +
search line:
 +
<pre>
 +
#ExitPolicy reject *:*
 +
</pre>
 +
change to:
 +
<pre>
 +
ExitPolicy reject *:*
 +
</pre>
 +
This prevent you from being abused!

Revision as of 16:39, 22 May 2017

Privoxy config force HTTPS to all Requests

edit /etc/privoxy/user.action and enter at the end:

{ +redirect{s@http://@https://@} }
.*

Privoxy Tor connect

(if TOR Node Server is installed) edit /etc/privoxy/config and enter at the end

forward-socks5   /               127.0.0.1:9050 .   #Tor connect
forward         192.168.*.*/     .                  #LAN forward
forward          127.*.*.*/  .                      #Localhost connect

Tor Node SET NO EXIT

edit the /etc/tor/torrc search line:

#ExitPolicy reject *:* 

change to:

ExitPolicy reject *:* 

This prevent you from being abused!