]> git.pld-linux.org Git - packages/lighttpd.git/blame - mod_access.conf
add mod_vhostdb_pgsql build
[packages/lighttpd.git] / mod_access.conf
CommitLineData
1efd0147
ER
1# Access module.
2#
bce8a1c7 3# Documentation: http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModAccess
1efd0147 4
7d3968ad
ER
5server.modules += (
6 "mod_access"
7)
693950e2
ER
8
9## deny access the file-extensions
10#
11# ~ is for backupfiles from vi, emacs, joe, ...
12# .inc is often used for code includes which should in general not be part
13# of the document-root
b0f8b537
ER
14# *,v and *,t - CVS files
15url.access-deny = ( "~", ".inc", ",v", ",t" )
16
8aa83154
ER
17# forbid access to files inside CVS or RCS dirs
18$HTTP["url"] =~ "/(?:CVS|RCS)/" {
b0f8b537
ER
19 url.access-deny = ("")
20}
This page took 0.262846 seconds and 4 git commands to generate.