-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivoxy
More file actions
32 lines (29 loc) · 755 Bytes
/
privoxy
File metadata and controls
32 lines (29 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
yum -y install epel-release
yum -y install privoxy
echo "user-manual /usr/share/doc/privoxy/user-manual/
confdir /etc/privoxy
logdir /var/log/privoxy
filterfile default.filter
logfile privoxy.log
listen-address 0.0.0.0:18118
toggle 1
enable-remote-toggle 0
enable-remote-http-toggle 0
enable-edit-actions 1
enforce-blocks 0
buffer-limit 4096
enable-proxy-authentication-forwarding 0
trusted-cgi-referer http://www.example.org/
forwarded-connect-retries 0
max-client-connections 256
accept-intercepted-requests 1
allow-cgi-request-crunching 0
split-large-forms 0
keep-alive-timeout 5
tolerate-pipelining 1
socket-timeout 300
forward-socks5 / 127.0.0.1:1080 .
forward / .
" > /etc/privoxy/config
systemctl enable privoxy
systemctl start privoxy