blob: 53a18a2662957bc5880c0d03f5eb93d7960d1277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#######################################################################
##
## Dirlisting Module
## -------------------
##
## See http://www.lighttpd.net/documentation/dirlisting.html
##
##
## Enabled Directory listing
##
dir-listing.activate = "disable"
##
## Hide dot files from the listing?
## By default they are listed.
##
dir-listing.hide-dotfiles = "disable"
##
## list of regular expressions. Files that match any of the specified
## regular expressions will be excluded from directory listings.
##
dir-listing.exclude = ( "~$" )
##
## set a encoding for the generated directory listing
##
## If you file-system is not using ASCII you have to set the encoding of
## the filenames as they are put into the HTML listing AS IS (with XML
## encoding)
##
dir-listing.encoding = "UTF-8"
##
## Specify the url to an optional CSS file.
##
#dir-listing.external-css = "/dirindex.css"
##
## Include HEADER.txt files above the directory listing.
## You can disable showing the HEADER.txt in the listing.
##
dir-listing.hide-header-file = "disable"
dir-listing.show-header = "disable"
##
## Include README.txt files above the directory listing.
## You can disable showing the README.txt in the listing.
##
dir-listing.hide-readme-file = "disable"
dir-listing.show-readme = "disable"
##
#######################################################################
|