Added back in debugging response header

This commit is contained in:
Mcat12 2016-01-17 20:36:59 -05:00 committed by Dan Schaper
parent ede8f4714f
commit 544919175c
1 changed files with 6 additions and 0 deletions

View File

@ -37,3 +37,9 @@ $HTTP["url"] =~ "^/admin/" {
# Create a response header for debugging using curl -I
setenv.add-response-header = ( "X-Pi-hole" => "The Pi-hole Web interface is working!" )
}
# If the URL does not start with /admin, then it is a query for an ad domain
$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." )
}