21 lines
723 B
ApacheConf
21 lines
723 B
ApacheConf
<IfModule mod_autoindex.c>
|
|
# Directives controlling the display of server-generated directory listings.
|
|
|
|
# REMOVED: FancyIndexing
|
|
IndexOptions VersionSort HTMLTable NameWidth=* DescriptionWidth=* Charset=UTF-8
|
|
|
|
# ReadmeName is the name of the README file the server will look for by
|
|
# default, and append to directory listings.
|
|
#
|
|
# HeaderName is the name of a file which should be prepended to
|
|
# directory indexes
|
|
ReadmeName README.html
|
|
HeaderName HEADER.html
|
|
|
|
#
|
|
# IndexIgnore is a set of filenames which directory indexing should ignore
|
|
# and not include in the listing. Shell-style wildcarding is permitted.
|
|
IndexIgnore .??* *~ *# RCS CVS *,v *,t
|
|
</IfModule>
|
|
|
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|