Created
February 14, 2017 13:21
-
-
Save SkaTeMasTer/24ea98cae808ee26f66fca37e9410cbf to your computer and use it in GitHub Desktop.
PIHOLE config for lighthttpd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sudo nano /etc/lighttpd/lighttpd.conf | |
server.modules = ( | |
"mod_access", | |
"mod_accesslog", | |
"mod_expire", | |
"mod_compress", | |
"mod_redirect", | |
"mod_setenv", | |
"mod_rewrite" | |
) | |
server.document-root = "/var/www/html" | |
server.error-handler-404 = "pihole/index.html" | |
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 | |
accesslog.filename = "/var/log/lighttpd/access.log" | |
accesslog.format = "%{%s}t|%V|%r|%s|%b" | |
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" ) | |
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" | |
$HTTP["url"] =~ "^/admin/" { | |
setenv.add-response-header = ( | |
"X-Pi-hole" => "The Pi-hole Web interface is working!", | |
"X-Frame-Options" => "DENY" | |
) | |
} | |
$HTTP["url"] =~ "^(?!/admin)/.*" { | |
setenv.add-response-header = ( "X-Pi-hole" => "A black hole for Internet advertisements." ) | |
url.rewrite = ("(.*).js" => "pihole/index.js") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment