dirlisting.conf 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #######################################################################
  2. ##
  3. ## Dirlisting Module
  4. ## -------------------
  5. ##
  6. ## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModDirlisting
  7. ##
  8. ##
  9. ## Enabled Directory listing
  10. ## default: disable
  11. #dir-listing.activate = "enable"
  12. ##
  13. ## Hide dot files from the listing?
  14. ## By default they are hidden (not listed).
  15. ## default: enable
  16. #dir-listing.hide-dotfiles = "enable"
  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. ## local URL to optional CSS stylesheet for the directory listing
  32. ##
  33. #dir-listing.external-css = "/dirindex.css"
  34. ##
  35. ## local URL to optional js script to include,
  36. ## e.g. for client side directory list sorting
  37. ##
  38. #dir-listing.external-js = "/dirindex.js"
  39. ##
  40. ## Include HEADER.txt files above the directory listing.
  41. ## default: disable
  42. ##
  43. #dir-listing.show-header = "enable"
  44. ##
  45. ## You can disable showing the HEADER.txt in the listing.
  46. ## default: disable (shows file in listing)
  47. ##
  48. #dir-listing.hide-header-file = "enable"
  49. ##
  50. ## HTML-encode HEADER.txt
  51. ## (disable to include files as-is, e.g. if files contain valid HTML)
  52. ## default: enable
  53. ##
  54. #dir-listing.encode-header = "disable"
  55. ##
  56. ## Include README.txt files above the directory listing.
  57. ## default: disable
  58. ##
  59. #dir-listing.show-readme = "enable"
  60. ##
  61. ## You can disable showing the README.txt in the listing.
  62. ## default: disable (shows file in listing)
  63. ##
  64. #dir-listing.hide-readme-file = "enable"
  65. ##
  66. ## HTML-encode README.txt
  67. ## (disable to include files as-is, e.g. if files contain valid HTML)
  68. ## default: enable
  69. ##
  70. #dir-listing.encode-readme = "disable"
  71. ##
  72. ## displays a string in the footer of a listing page
  73. ## default: value of server.tag directive
  74. ## "<PACKAGE_NAME>/<PACKAGE_VERSION>" e.g. "lighttpd/1.4.56"
  75. ##
  76. #dir-listing.set-footer = " "
  77. ##
  78. ## Use lighttpd-provided page tags <body> and <html>
  79. ## (disable if HEADER.txt and README.txt provide those tags)
  80. ## default: enable
  81. ##
  82. #dir-listing.auto-layout = "disable"
  83. ##
  84. #######################################################################