2016-01-30 20:12:40 +00:00
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
2017-02-22 17:55:20 +00:00
|
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
2016-01-30 20:12:40 +00:00
|
|
|
# lighttpd config for Pi-hole
|
|
|
|
#
|
2017-02-22 17:55:20 +00:00
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
|
|
|
|
|
2016-01-30 20:12:40 +00:00
|
|
|
|
2017-02-09 15:46:55 +00:00
|
|
|
###############################################################################
|
|
|
|
# FILE AUTOMATICALLY OVERWRITTEN BY PI-HOLE INSTALL/UPDATE PROCEDURE. #
|
|
|
|
# ANY CHANGES MADE TO THIS FILE AFTER INSTALL WILL BE LOST ON THE NEXT UPDATE #
|
|
|
|
# #
|
|
|
|
# CHANGES SHOULD BE MADE IN A SEPERATE CONFIG FILE: #
|
|
|
|
# /etc/lighttpd/external.conf #
|
|
|
|
###############################################################################
|
|
|
|
|
2015-06-07 04:27:43 +00:00
|
|
|
server.modules = (
|
2015-12-01 21:12:16 +00:00
|
|
|
"mod_access",
|
2015-12-01 22:04:07 +00:00
|
|
|
"mod_accesslog",
|
2016-09-20 09:34:21 +00:00
|
|
|
"mod_auth",
|
2015-06-07 04:27:43 +00:00
|
|
|
"mod_expire",
|
|
|
|
"mod_compress",
|
2016-05-01 21:06:57 +00:00
|
|
|
"mod_redirect",
|
2016-05-01 23:46:15 +00:00
|
|
|
"mod_setenv",
|
|
|
|
"mod_rewrite"
|
2015-06-07 04:27:43 +00:00
|
|
|
)
|
2015-10-17 17:04:49 +00:00
|
|
|
|
|
|
|
server.document-root = "/var/www/html"
|
2017-02-09 15:46:55 +00:00
|
|
|
server.error-handler-404 = "pihole/index.php"
|
2015-06-07 04:27:43 +00:00
|
|
|
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
|
2017-02-09 15:46:55 +00:00
|
|
|
accesslog.filename = "/var/log/lighttpd/access.log"
|
|
|
|
accesslog.format = "%{%s}t|%V|%r|%s|%b"
|
2015-10-17 17:04:49 +00:00
|
|
|
|
|
|
|
|
2015-06-07 04:27:43 +00:00
|
|
|
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )
|
|
|
|
url.access-deny = ( "~", ".inc" )
|
|
|
|
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
|
2015-10-17 17:04:49 +00:00
|
|
|
|
2015-06-07 04:27:43 +00:00
|
|
|
compress.cache-dir = "/var/cache/lighttpd/compress/"
|
|
|
|
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
|
2015-10-17 17:04:49 +00:00
|
|
|
|
2015-06-07 04:27:43 +00:00
|
|
|
# default listening port for IPv6 falls back to the IPv4 port
|
|
|
|
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"
|
2015-10-17 17:04:49 +00:00
|
|
|
|
2015-10-17 17:11:03 +00:00
|
|
|
# If the URL starts with /admin, it is the Web interface
|
|
|
|
$HTTP["url"] =~ "^/admin/" {
|
|
|
|
# Create a response header for debugging using curl -I
|
2016-05-03 15:58:13 +00:00
|
|
|
setenv.add-response-header = (
|
|
|
|
"X-Pi-hole" => "The Pi-hole Web interface is working!",
|
|
|
|
"X-Frame-Options" => "DENY"
|
|
|
|
)
|
2015-06-07 04:27:43 +00:00
|
|
|
}
|
2016-01-18 01:36:59 +00:00
|
|
|
|
2016-10-25 18:46:26 +00:00
|
|
|
# Rewite js requests, must be out of $HTTP block due to bug #2526
|
|
|
|
url.rewrite = ( "^(?!/admin/).*\.js$" => "pihole/index.js" )
|
|
|
|
|
2016-01-18 01:36:59 +00:00
|
|
|
# If the URL does not start with /admin, then it is a query for an ad domain
|
|
|
|
$HTTP["url"] =~ "^(?!/admin)/.*" {
|
2016-05-03 15:58:13 +00:00
|
|
|
# Create a response header for debugging using curl -I
|
|
|
|
setenv.add-response-header = ( "X-Pi-hole" => "A black hole for Internet advertisements." )
|
2016-01-18 01:36:59 +00:00
|
|
|
}
|
2016-09-20 09:34:21 +00:00
|
|
|
|
2017-02-21 19:36:59 +00:00
|
|
|
# Entering just "pi.hole" into a browser redirects to "pi.hole/admin/"
|
|
|
|
$HTTP["host"] == "pi.hole" {
|
|
|
|
$HTTP["url"] == "/" {
|
|
|
|
url.redirect = ( "" => "/admin/" )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 09:34:21 +00:00
|
|
|
# Add user chosen options held in external file
|
|
|
|
include_shell "cat external.conf 2>/dev/null"
|