Mercurial > hg > rlgallery-misc
view lighttpd/conf.d/dirlisting.conf @ 68:67bcca6e3cb1
Prevent crashes if no ttyrec files can be associated with a game.
If the postprocessing step finds no ttyrec files created between a
game's end and the previous game's end, it will no longer index an
empty list and crash.
The condition of finding no ttyrec files is still a bug that requires
investigation.
author | John "Elwin" Edwards |
---|---|
date | Sat, 16 Jan 2016 02:12:50 +0000 |
parents | b003235abe75 |
children |
line wrap: on
line source
####################################################################### ## ## Dirlisting Module ## ------------------- ## ## See http://www.lighttpd.net/documentation/dirlisting.html ## ## ## Enabled Directory listing ## dir-listing.activate = "enable" ## ## 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" ## #######################################################################