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