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