Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'advanced/lighttpd.conf.debian')
-rw-r--r--advanced/lighttpd.conf.debian9
1 files changed, 7 insertions, 2 deletions
diff --git a/advanced/lighttpd.conf.debian b/advanced/lighttpd.conf.debian
index 8b62f448..15821bc7 100644
--- a/advanced/lighttpd.conf.debian
+++ b/advanced/lighttpd.conf.debian
@@ -12,6 +12,7 @@
server.modules = (
"mod_access",
"mod_accesslog",
+ "mod_auth",
"mod_expire",
"mod_compress",
"mod_redirect",
@@ -52,10 +53,14 @@ $HTTP["url"] =~ "^/admin/" {
)
}
+# Rewite js requests, must be out of $HTTP block due to bug #2526
+url.rewrite = ( "^(?!/admin/).*\.js$" => "pihole/index.js" )
+
# 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." )
- # rewrite only js requests
- url.rewrite = ("(.*).js" => "pihole/index.js")
}
+
+# Add user chosen options held in external file
+include_shell "cat external.conf 2>/dev/null"