dirlisting.conf 1.3 KB

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