mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Merge pull request #2468 from gstrauss/lighttpd-conf-enhancements
lighttpd conf enhancements
This commit is contained in:
commit
a23ba91681
2 changed files with 12 additions and 10 deletions
|
@ -64,12 +64,13 @@ $HTTP["url"] =~ "^/admin/" {
|
||||||
# Allow Block Page access to local fonts
|
# Allow Block Page access to local fonts
|
||||||
setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
|
setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
# Block . files from being served, such as .git, .github, .gitignore
|
# Block . files from being served, such as .git, .github, .gitignore
|
||||||
$HTTP["url"] =~ "^/admin/\.(.*)" {
|
$HTTP["url"] =~ "^/admin/\." {
|
||||||
url.access-deny = ("")
|
url.access-deny = ("")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add user chosen options held in external file
|
# Add user chosen options held in external file
|
||||||
include_shell "cat external.conf 2>/dev/null"
|
# (use file glob for optional file)
|
||||||
|
include "external*.conf"
|
||||||
|
|
|
@ -82,12 +82,13 @@ $HTTP["url"] =~ "^/admin/" {
|
||||||
# Allow Block Page access to local fonts
|
# Allow Block Page access to local fonts
|
||||||
setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
|
setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
# Block . files from being served, such as .git, .github, .gitignore
|
# Block . files from being served, such as .git, .github, .gitignore
|
||||||
$HTTP["url"] =~ "^/admin/\.(.*)" {
|
$HTTP["url"] =~ "^/admin/\." {
|
||||||
url.access-deny = ("")
|
url.access-deny = ("")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add user chosen options held in external file
|
# Add user chosen options held in external file
|
||||||
include_shell "cat external.conf 2>/dev/null"
|
# (use file glob for optional file)
|
||||||
|
include "external*.conf"
|
||||||
|
|
Loading…
Reference in a new issue