]> git.pld-linux.org Git - packages/apache.git/blame - apache-mod_autoindex.conf
- don't process commented out entries
[packages/apache.git] / apache-mod_autoindex.conf
CommitLineData
408714fc 1LoadModule autoindex_module modules/mod_autoindex.so
add0b1eb 2
28e123af
JB
3#
4# Directives controlling the display of server-generated directory listings.
5#
6
78bb140c
ER
7# Required modules: mod_autoindex, mod_alias
8#
9# To see the listing of a directory, the Options directive for the
10# directory must include "Indexes", and the directory must not contain
11# a file matching those listed in the DirectoryIndex directive.
12
add0b1eb 13<IfModule mod_autoindex.c>
78bb140c
ER
14# IndexOptions: Controls the appearance of server-generated directory
15# listings.
16#
061ad5b2 17IndexOptions FancyIndexing HTMLTable VersionSort Charset=UTF-8
add0b1eb 18
78bb140c
ER
19# We include the /icons/ alias for FancyIndexed directory listings. If
20# you do not use FancyIndexing, you may comment this out.
21#
22Alias /icons/ "/home/services/httpd/icons/"
add0b1eb 23
78bb140c 24<Directory "/home/services/httpd/icons">
408714fc
ER
25 Options Indexes MultiViews
26 AllowOverride None
63f51c61 27 <IfModule mod_authz_host.c>
40ca719a 28 Require all granted
408714fc 29 </IfModule>
78bb140c 30</Directory>
add0b1eb 31
78bb140c
ER
32#
33# AddIcon* directives tell the server which icon to show for different
34# files or filename extensions. These are only displayed for
35# FancyIndexed directories.
36#
37AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
add0b1eb 38
78bb140c
ER
39AddIconByType (TXT,/icons/text.gif) text/*
40AddIconByType (IMG,/icons/image2.gif) image/*
41AddIconByType (SND,/icons/sound2.gif) audio/*
42AddIconByType (VID,/icons/movie.gif) video/*
add0b1eb 43
78bb140c
ER
44AddIcon /icons/binary.gif .bin .exe
45AddIcon /icons/binhex.gif .hqx
46AddIcon /icons/tar.gif .tar
47AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
48AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
49AddIcon /icons/a.gif .ps .ai .eps
50AddIcon /icons/layout.gif .html .shtml .htm .pdf
51AddIcon /icons/text.gif .txt
52AddIcon /icons/c.gif .c
53AddIcon /icons/p.gif .pl .py
54AddIcon /icons/f.gif .for
55AddIcon /icons/dvi.gif .dvi
56AddIcon /icons/uuencoded.gif .uu
57AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
58AddIcon /icons/tex.gif .tex
59AddIcon /icons/bomb.gif core
add0b1eb 60
78bb140c
ER
61AddIcon /icons/back.gif ..
62AddIcon /icons/hand.right.gif README
63AddIcon /icons/folder.gif ^^DIRECTORY^^
64AddIcon /icons/blank.gif ^^BLANKICON^^
add0b1eb 65
78bb140c
ER
66#
67# DefaultIcon is which icon to show for files which do not have an icon
68# explicitly set.
69#
70DefaultIcon /icons/unknown.gif
add0b1eb 71
78bb140c
ER
72#
73# AddDescription allows you to place a short description after a file in
74# server-generated indexes. These are only displayed for FancyIndexed
75# directories.
76# Format: AddDescription "description" filename
77#
78#AddDescription "GZIP compressed document" .gz
79#AddDescription "tar archive" .tar
80#AddDescription "GZIP compressed tar archive" .tgz
81
82#
83# ReadmeName is the name of the README file the server will look for by
84# default, and append to directory listings.
85#
86# HeaderName is the name of a file which should be prepended to
87# directory indexes.
88ReadmeName README.html
89HeaderName HEADER.html
90
91#
92# IndexIgnore is a set of filenames which directory indexing should ignore
93# and not include in the listing. Shell-style wildcarding is permitted.
94#
95IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
add0b1eb 96
add0b1eb 97</IfModule>
This page took 0.074923 seconds and 4 git commands to generate.