hosts format script

This commit is contained in:
jacobsalmela
2015-05-19 13:31:37 -05:00
parent 15c84db022
commit 56c776af22
19 changed files with 109 additions and 434 deletions

View File

@@ -1,9 +0,0 @@
domain-needed
bogus-priv
no-resolv
server=127.0.0.1
server=8.8.8.8
server=8.8.4.4
interface=eth0
cache-size=10000
log-queries

View File

@@ -1,8 +0,0 @@
# !/bin/bash
# Download the ad list
sudo /usr/local/bin/gravity.sh
# Enable DNS and start blocking ads
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
sudo mv /etc/dnsmasq.conf.pihole /etc/dnsmasq.conf
sudo service dnsmasq start

View File

@@ -1,29 +0,0 @@
#!/bin/bash
# /usr/local/bin/gravity.sh
# URL to pull list of known ad servers from
adListURL="http://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=0&mimetype=plaintext"
# Address to send ads to
piholeIP="127.0.0.1"
# Where the list of ad servers are stored once downloaded
# Any file in /etc/dnsmasq.d is loaded automatically when the service starts
adFile="/etc/dnsmasq.d/adList.conf"
# The temporary file for holding
eventHorizion="/etc/dnsmasq.d/adList.conf.tmp"
# Parses out the default 127.0.0.1 address and replaces it with the IP where ads will be sent
curl $adListURL | sed "s/127\.0\.0\.1/$piholeIP/" > $eventHorizion
sleep 10
# If the temporary list of ad servers already exists (the eventHorizion)
if [ -f "$eventHorizion" ];then
# Then replace it as the new ad file
mv -f $eventHorizion $adFile
else
echo "Error building the ad list, please try again."
exit 1
fi

View File

@@ -1,35 +0,0 @@
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_auth",
"mod_rewrite"
)
server.document-root = "/var/www"
server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.port = 80
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
# Rewrites all URLs to the /var/www/pihole/index.html
# This should be a blank file (for speed)
$HTTP["host"] =~ ".*" {
url.rewrite = (".*" => "pihole/index.html")
}