From 3fab34687c5fb7fd85e0cd8e95db6eaeae9f0847 Mon Sep 17 00:00:00 2001 From: ProtoFoo Date: Tue, 21 Feb 2017 20:38:09 +0100 Subject: [PATCH] Redirect pi.hole to pi.hole/admin/ --- advanced/lighttpd.conf.fedora | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/advanced/lighttpd.conf.fedora b/advanced/lighttpd.conf.fedora index 6c5b035b..d7bc823f 100644 --- a/advanced/lighttpd.conf.fedora +++ b/advanced/lighttpd.conf.fedora @@ -87,5 +87,13 @@ $HTTP["url"] =~ "^(?!/admin)/.*" { setenv.add-response-header = ( "X-Pi-hole" => "A black hole for Internet advertisements." ) } +# Entering just "pi.hole" into a browser redirects to "pi.hole/admin/" +$HTTP["host"] == "pi.hole" { + $HTTP["url"] == "/" { + setenv.add-response-header = ( "X-Pi-hole" => "Redirecting pi.hole to /admin/." ) + url.redirect = ( "" => "/admin/" ) + } +} + # Add user chosen options held in external file include_shell "cat external.conf 2>/dev/null"