]> git.pld-linux.org Git - packages/apache.git/blame - apache-mod_mime.conf
- disable itk by default (last release 2009), try mod_ruid2
[packages/apache.git] / apache-mod_mime.conf
CommitLineData
86dece47
ER
1# $Id$
2LoadModule mime_module modules/mod_mime.so
3
4<IfModule mime_module>
408714fc
ER
5 #
6 # TypesConfig points to the file containing the list of mappings from
7 # filename extension to MIME-type.
8 #
86dece47
ER
9 TypesConfig /etc/mime.types
10
408714fc
ER
11 #
12 # AddType allows you to add to or override the MIME configuration
13 # file specified in TypesConfig for specific file types.
14 #
15 #AddType application/x-gzip .tgz
16 #
17 # AddEncoding allows you to have certain browsers uncompress
18 # information on the fly. Note: Not all browsers support this.
19 #
20 #AddEncoding x-compress .Z
21 #AddEncoding x-gzip .gz .tgz
22 #
23 # If the AddEncoding directives above are commented-out, then you
24 # probably should define those extensions to indicate media types:
25 #
26 AddType application/x-compress .Z
27 AddType application/x-gzip .gz .tgz
86dece47 28
408714fc
ER
29 #
30 # AddHandler allows you to map certain file extensions to "handlers":
31 # actions unrelated to filetype. These can be either built into the server
32 # or added with the Action directive (see below)
33 #
34 # To use CGI scripts outside of ScriptAliased directories:
35 # (You will also need to add "ExecCGI" to the "Options" directive.)
36 #
37 #AddHandler cgi-script .cgi
86dece47 38
408714fc
ER
39 # For files that include their own HTTP headers:
40 #AddHandler send-as-is asis
86dece47 41
408714fc
ER
42 # For server-parsed imagemap files:
43 #AddHandler imap-file map
86dece47 44
408714fc
ER
45 # For type maps (negotiated resources):
46 #AddHandler type-map var
86dece47 47
408714fc
ER
48 #
49 # Filters allow you to process content before it is sent to the client.
50 #
51 # To parse .shtml files for server-side includes (SSI):
52 # (You will also need to add "Includes" to the "Options" directive.)
53 #
54 #AddType text/html .shtml
55 #AddOutputFilter INCLUDES .shtml
86dece47 56</IfModule>
This page took 0.0305 seconds and 4 git commands to generate.