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