Grab changes by @rosskevin. (#386 - lighttpd changes to handle JS files)

pull/413/head
Promofaux 8 years ago
commit bc09760c84

@ -0,0 +1 @@
var x = "Pi-hole: A black hole for Internet advertisements."

@ -53,4 +53,6 @@ $HTTP["url"] =~ "^/admin/" {
$HTTP["url"] =~ "^(?!/admin)/.*" {
# Create a response header for debugging using curl -I
setenv.add-response-header = ( "X-Pi-hole" => "A black hole for Internet advertisements." )
# rewrite only js requests
url.rewrite = ("(.*).js" => "pihole/index.js")
}

@ -619,7 +619,7 @@ installPiholeWeb() {
else
$SUDO mkdir /var/www/html/pihole
$SUDO mv /var/www/html/index.lighttpd.html /var/www/html/index.lighttpd.orig
$SUDO cp /etc/.pihole/advanced/index.html /var/www/html/pihole/index.html
$SUDO cp /etc/.pihole/advanced/index.* /var/www/html/pihole/.
$SUDO echo " done!"
fi
}

Loading…
Cancel
Save