]> git.pld-linux.org Git - packages/lighttpd.git/blame_incremental - lighttpd-mod_access.conf
geoip packaging fixes
[packages/lighttpd.git] / lighttpd-mod_access.conf
... / ...
CommitLineData
1# Access module.
2#
3# Documentation: http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModAccess
4
5server.modules += (
6 "mod_access"
7)
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
14# *,v and *,t - CVS files
15url.access-deny = ( "~", ".inc", ",v", ",t" )
16
17# forbid access to files inside CVS or RCS dirs
18$HTTP["url"] =~ "/(?:CVS|RCS)/" {
19 url.access-deny = ("")
20}
This page took 0.027877 seconds and 4 git commands to generate.