lighttpd: slightly more efficient sample config

Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
pull/2468/head
Glenn Strauss 6 years ago
parent 69b2a5a876
commit 67bdcbcf19

@ -64,12 +64,12 @@ $HTTP["url"] =~ "^/admin/" {
# Allow Block Page access to local fonts
setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
}
}
# Block . files from being served, such as .git, .github, .gitignore
$HTTP["url"] =~ "^/admin/\.(.*)" {
$HTTP["url"] =~ "^/admin/\." {
url.access-deny = ("")
}
}
# Add user chosen options held in external file
# (use file glob for optional file)

@ -82,12 +82,12 @@ $HTTP["url"] =~ "^/admin/" {
# Allow Block Page access to local fonts
setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
}
}
# Block . files from being served, such as .git, .github, .gitignore
$HTTP["url"] =~ "^/admin/\.(.*)" {
$HTTP["url"] =~ "^/admin/\." {
url.access-deny = ("")
}
}
# Add user chosen options held in external file
# (use file glob for optional file)

Loading…
Cancel
Save