Annotation of elwix/config/etc/default/lighttpd/conf.d/dirlisting.conf, revision 1.1.2.2

1.1.2.1   misho       1: #######################################################################
                      2: ##
                      3: ##  Dirlisting Module 
                      4: ## ------------------- 
                      5: ##
                      6: ## See http://www.lighttpd.net/documentation/dirlisting.html
                      7: ##
                      8: 
                      9: ##
                     10: ## Enabled Directory listing
                     11: ##
1.1.2.2 ! misho      12: dir-listing.activate      = "enable"
1.1.2.1   misho      13: 
                     14: ##
                     15: ## Hide dot files from the listing?
                     16: ## By default they are listed.
                     17: ##
1.1.2.2 ! misho      18: dir-listing.hide-dotfiles = "enable" 
1.1.2.1   misho      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: ##
1.1.2.2 ! misho      44: dir-listing.hide-header-file = "enable"
        !            45: dir-listing.show-header = "enable"
1.1.2.1   misho      46: 
                     47: ##
                     48: ## Include README.txt files above the directory listing. 
                     49: ## You can disable showing the README.txt in the listing. 
                     50: ##
1.1.2.2 ! misho      51: dir-listing.hide-readme-file = "enable"
        !            52: dir-listing.show-readme = "enable"
1.1.2.1   misho      53: 
                     54: ##
                     55: #######################################################################

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>