Merge pull request #2468 from gstrauss/lighttpd-conf-enhancements

lighttpd conf enhancements
This commit is contained in:
Mark Drobnak
2018-10-20 16:43:03 -04:00
committed by GitHub
2 changed files with 12 additions and 10 deletions

View File

@ -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"

View File

@ -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"