~clint-fewbar/ubuntu/maverick/apache2/maverick-passphrase-plymouth-change

« back to all changes in this revision

Viewing changes to debian/config-dir/mods-available/autoindex.conf

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2007-07-03 21:23:40 UTC
  • mfrom: (0.9.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070703212340-ezgz2fwx00jiiiox
Tags: 2.2.4-2
* Modularize config: Move module specific configuration from apache2.conf
  to mods-available/*conf (Closes: #338472)
* Remove the NO_START kludge. Now you have to use rc*.d symlinks to disable
  apache2. (Closes: #408462, #275561)
* Create run and lock directores in apache2ctl to make it work on fresh
  installations before the first call of the init script. Together with
  the previous item, this closes: #418499
* Disable AddDefaultCharset again (Closes: #397886)
* Make ports.conf, conf.d/charset, and /etc/default/apache2 conffiles
  managed by dpkg
* Listen on port 443 by default if mod_ssl is loaded (Closes: #404598)
* Add logic to start htcacheclean as daemon or cronjob. The configuration
  is in /etc/default/apache2
* Fix security issues:
  - CVE-2007-3304: prevent parent process to send SIGUSR1 to arbitrary
    processes
  - CVE-2006-5752: XSS in mod_status
* Add init.d dependency info from insserv overrides to /etc/init.d/apache2
* Replace apachectl with apache2ctl in docs (Closes: #164493)
* Add usage message to apache2ctl (Closes: #359008)
* Make -dev packages priority extra
* Add secure example cipher/protocol configuration to ssl.conf
* Update watch file (Closes: #433552)
* Bump dh_compat to 5
* Add new package apache2-dbg with debugging symbols
* Fix mod_cache returning 304 instead of 200 on HEAD requests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
IndexOptions NameWidth=* DescriptionWidth=*
 
1
<IfModule mod_autoindex.c>
 
2
#
 
3
# Directives controlling the display of server-generated directory listings.
 
4
#
 
5
 
 
6
#
 
7
# IndexOptions: Controls the appearance of server-generated directory
 
8
# listings.
 
9
#
 
10
IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=* DescriptionWidth=*
 
11
 
 
12
#
 
13
# AddIcon* directives tell the server which icon to show for different
 
14
# files or filename extensions.  These are only displayed for
 
15
# FancyIndexed directories.
 
16
#
 
17
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip x-bzip2
 
18
 
 
19
AddIconByType (TXT,/icons/text.gif) text/*
 
20
AddIconByType (IMG,/icons/image2.gif) image/*
 
21
AddIconByType (SND,/icons/sound2.gif) audio/*
 
22
AddIconByType (VID,/icons/movie.gif) video/*
 
23
 
 
24
AddIcon /icons/binary.gif .bin .exe
 
25
AddIcon /icons/binhex.gif .hqx
 
26
AddIcon /icons/tar.gif .tar
 
27
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
 
28
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
 
29
AddIcon /icons/a.gif .ps .ai .eps
 
30
AddIcon /icons/layout.gif .html .shtml .htm .pdf
 
31
AddIcon /icons/text.gif .txt
 
32
AddIcon /icons/c.gif .c
 
33
AddIcon /icons/p.gif .pl .py
 
34
AddIcon /icons/f.gif .for
 
35
AddIcon /icons/dvi.gif .dvi
 
36
AddIcon /icons/uuencoded.gif .uu
 
37
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
 
38
AddIcon /icons/tex.gif .tex
 
39
AddIcon /icons/bomb.gif core
 
40
 
 
41
AddIcon /icons/back.gif ..
 
42
AddIcon /icons/hand.right.gif README
 
43
AddIcon /icons/folder.gif ^^DIRECTORY^^
 
44
AddIcon /icons/blank.gif ^^BLANKICON^^
 
45
 
 
46
#
 
47
# DefaultIcon is which icon to show for files which do not have an icon
 
48
# explicitly set.
 
49
#
 
50
DefaultIcon /icons/unknown.gif
 
51
 
 
52
#
 
53
# AddDescription allows you to place a short description after a file in
 
54
# server-generated indexes.  These are only displayed for FancyIndexed
 
55
# directories.
 
56
# Format: AddDescription "description" filename
 
57
#
 
58
#AddDescription "GZIP compressed document" .gz
 
59
#AddDescription "tar archive" .tar
 
60
#AddDescription "GZIP compressed tar archive" .tgz
 
61
 
 
62
#
 
63
# ReadmeName is the name of the README file the server will look for by
 
64
# default, and append to directory listings.
 
65
#
 
66
# HeaderName is the name of a file which should be prepended to
 
67
# directory indexes. 
 
68
ReadmeName README.html
 
69
HeaderName HEADER.html
 
70
 
 
71
#
 
72
# IndexIgnore is a set of filenames which directory indexing should ignore
 
73
# and not include in the listing.  Shell-style wildcarding is permitted.
 
74
#
 
75
IndexIgnore .??* *~ *# RCS CVS *,v *,t 
 
76
 
 
77
</IfModule>