]> git.pld-linux.org Git - packages/lighttpd.git/blame - lighttpd-mod_access.conf
- add vhosts.d dir
[packages/lighttpd.git] / lighttpd-mod_access.conf
CommitLineData
1efd0147
ER
1# Access module.
2#
b0f8b537 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
17$HTTP["url"] =~ "(?:CVS|RCS)" {
18 url.access-deny = ("")
19}
This page took 0.106054 seconds and 4 git commands to generate.