forked from Andrwe/privoxy-blocklist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
privoxy-blacklist.example_conf
32 lines (26 loc) · 1.01 KB
/
privoxy-blacklist.example_conf
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
# Config of privoxy-blocklist
# array of URL for AdblockPlus lists
# for more sources just add it within the round brackets
#URLS=("https://easylist-downloads.adblockplus.org/easylistgermany.txt" "http://adblockplus.mozdev.org/easylist/easylist.txt")
#URLS=("https://easylist-downloads.adblockplus.org/easylist.txt")
URLS=("http://adblockplus.mozdev.org/easylist/easylist.txt")
# config for privoxy initscript providing PRIVOXY_CONF, PRIVOXY_USER and PRIVOXY_GROUP
INIT_CONF="/etc/conf.d/privoxy"
# !! if the config above doesn't exist set these variables here !!
# !! These values will be overwritten by INIT_CONF !!
PRIVOXY_USER="privoxy"
#PRIVOXY_GROUP="privoxy"
#PRIVOXY_GROUP="nogroup"
PRIVOXY_GROUP="root"
PRIVOXY_CONF="/etc/privoxy/config"
# name for lock file (default: script name)
TMPNAME="$(basename ${0})"
# directory for temporary files
TMPDIR="/tmp/${TMPNAME}"
# Debug-level
# -1 = quiet
# 0 = normal
# 1 = verbose
# 2 = more verbose (debugging)
# 3 = incredibly loud (function debugging)
DBG=0