knowledge/technology/applications/network/Privoxy.md

30 lines
867 B
Markdown
Raw Normal View History

2023-12-04 10:02:23 +00:00
---
obj: application
website: https://www.privoxy.org
arch-wiki: https://wiki.archlinux.org/title/Privoxy
---
2024-03-19 08:25:42 +00:00
2023-12-04 10:02:23 +00:00
# Privoxy
2024-01-17 08:00:45 +00:00
Privoxy is a filtering proxy for the [HTTP](../../internet/HTTP.md) protocol, frequently used in combination with [Tor](../../internet/Tor.md). Privoxy is a web proxy with advanced filtering capabilities for protecting privacy, filtering web page content, managing cookies, controlling access, and removing ads, banners, pop-ups, etc. It supports both stand-alone systems and multi-user networks.
2023-12-04 10:02:23 +00:00
## Configuration
Edit `/etc/privoxy/config`:
```
listen-address [SERVER-IP]:[PORT]
```
2024-01-17 08:00:45 +00:00
To forward [i2p](../../internet/I2P.md) sites:
2023-12-04 10:02:23 +00:00
```
forward .i2p localhost:4444
```
To forward onion sites:
```
forward-socks4a .onion localhost:9050 .
```
2024-01-17 08:00:45 +00:00
To forward all traffic through [Tor](../../internet/Tor.md):
2023-12-04 10:02:23 +00:00
```
forward-socks5 / localhost:9050 .
2024-09-04 14:22:57 +00:00
```