summaryrefslogtreecommitdiff
path: root/doc/config/conf.d/dirlisting.conf
blob: 982121d7f68312dbbbd7295155bd4ef04f30a8f8 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#######################################################################
##
##  Dirlisting Module 
## ------------------- 
##
## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModDirlisting
##

##
## Enabled Directory listing
## default: disable
#dir-listing.activate      = "enable"

##
## Hide dot files from the listing?
## By default they are hidden (not listed).
## default: enable
#dir-listing.hide-dotfiles = "enable"

##
## 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"

##
## local URL to optional CSS stylesheet for the directory listing
##
#dir-listing.external-css  = "/dirindex.css"

##
## local URL to optional js script to include,
## e.g. for client side directory list sorting
##
#dir-listing.external-js = "/dirindex.js"

##
## Include HEADER.txt files above the directory listing. 
## default: disable
##
#dir-listing.show-header = "enable"
##
## You can disable showing the HEADER.txt in the listing. 
## default: disable (shows file in listing)
##
#dir-listing.hide-header-file = "enable"
##
## HTML-encode HEADER.txt
## (disable to include files as-is, e.g. if files contain valid HTML)
## default: enable
##
#dir-listing.encode-header = "disable"

##
## Include README.txt files above the directory listing. 
## default: disable
##
#dir-listing.show-readme = "enable"
##
## You can disable showing the README.txt in the listing. 
## default: disable (shows file in listing)
##
#dir-listing.hide-readme-file = "enable"
##
## HTML-encode README.txt
## (disable to include files as-is, e.g. if files contain valid HTML)
## default: enable
##
#dir-listing.encode-readme = "disable"

##
## displays a string in the footer of a listing page
## default: value of server.tag directive
##   "<PACKAGE_NAME>/<PACKAGE_VERSION>" e.g. "lighttpd/1.4.56"
##
#dir-listing.set-footer = " "

##
## Use lighttpd-provided page tags <body> and <html>
## (disable if HEADER.txt and README.txt provide those tags)
## default: enable
##
#dir-listing.auto-layout = "disable"

##
#######################################################################