summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Boehm <hollow@gentoo.org>2007-06-05 13:47:15 +0000
committerBenedikt Boehm <hollow@gentoo.org>2007-06-05 13:47:15 +0000
commit31753005272c08e4e6244209e309be3c376b2d5d (patch)
tree8bcad5fe981c4095f26b342bb65c6d437cb637ca /2.2/conf/modules.d/00_mod_mime.conf
parentmove ssl vhost conf to vhosts.d/ (diff)
downloadapache-31753005272c08e4e6244209e309be3c376b2d5d.tar.gz
apache-31753005272c08e4e6244209e309be3c376b2d5d.tar.bz2
apache-31753005272c08e4e6244209e309be3c376b2d5d.zip
some whitespace cleanups again
Diffstat (limited to '2.2/conf/modules.d/00_mod_mime.conf')
-rw-r--r--2.2/conf/modules.d/00_mod_mime.conf90
1 files changed, 45 insertions, 45 deletions
diff --git a/2.2/conf/modules.d/00_mod_mime.conf b/2.2/conf/modules.d/00_mod_mime.conf
index 278c181..460bf20 100644
--- a/2.2/conf/modules.d/00_mod_mime.conf
+++ b/2.2/conf/modules.d/00_mod_mime.conf
@@ -8,54 +8,54 @@
DefaultType text/plain
<IfModule mime_module>
- # TypesConfig points to the file containing the list of mappings from
- # filename extension to MIME-type.
- TypesConfig /etc/mime.types
-
- # AddType allows you to add to or override the MIME configuration
- # file specified in TypesConfig for specific file types.
- #AddType application/x-gzip .tgz
-
- # AddEncoding allows you to have certain browsers uncompress
- # information on the fly. Note: Not all browsers support this.
- #AddEncoding x-compress .Z
- #AddEncoding x-gzip .gz .tgz
-
- # If the AddEncoding directives above are commented-out, then you
- # probably should define those extensions to indicate media types:
- AddType application/x-compress .Z
- AddType application/x-gzip .gz .tgz
-
- # AddHandler allows you to map certain file extensions to "handlers":
- # actions unrelated to filetype. These can be either built into the server
- # or added with the Action directive (see below)
-
- # To use CGI scripts outside of ScriptAliased directories:
- # (You will also need to add "ExecCGI" to the "Options" directive.)
- #AddHandler cgi-script .cgi
-
- # For files that include their own HTTP headers:
- #AddHandler send-as-is asis
-
- # For server-parsed imagemap files:
- #AddHandler imap-file map
-
- # For type maps (negotiated resources):
- AddHandler type-map var
-
- # Filters allow you to process content before it is sent to the client.
- #
- # To parse .shtml files for server-side includes (SSI):
- # (You will also need to add "Includes" to the "Options" directive.)
- #AddType text/html .shtml
- #AddOutputFilter INCLUDES .shtml
+# TypesConfig points to the file containing the list of mappings from
+# filename extension to MIME-type.
+TypesConfig /etc/mime.types
+
+# AddType allows you to add to or override the MIME configuration
+# file specified in TypesConfig for specific file types.
+#AddType application/x-gzip .tgz
+
+# AddEncoding allows you to have certain browsers uncompress
+# information on the fly. Note: Not all browsers support this.
+#AddEncoding x-compress .Z
+#AddEncoding x-gzip .gz .tgz
+
+# If the AddEncoding directives above are commented-out, then you
+# probably should define those extensions to indicate media types:
+AddType application/x-compress .Z
+AddType application/x-gzip .gz .tgz
+
+# AddHandler allows you to map certain file extensions to "handlers":
+# actions unrelated to filetype. These can be either built into the server
+# or added with the Action directive (see below)
+
+# To use CGI scripts outside of ScriptAliased directories:
+# (You will also need to add "ExecCGI" to the "Options" directive.)
+#AddHandler cgi-script .cgi
+
+# For files that include their own HTTP headers:
+#AddHandler send-as-is asis
+
+# For server-parsed imagemap files:
+#AddHandler imap-file map
+
+# For type maps (negotiated resources):
+AddHandler type-map var
+
+# Filters allow you to process content before it is sent to the client.
+#
+# To parse .shtml files for server-side includes (SSI):
+# (You will also need to add "Includes" to the "Options" directive.)
+#AddType text/html .shtml
+#AddOutputFilter INCLUDES .shtml
</IfModule>
<IfModule mime_magic_module>
- # The mod_mime_magic module allows the server to use various hints from the
- # contents of the file itself to determine its type. The MIMEMagicFile
- # directive tells the module where the hint definitions are located.
- MIMEMagicFile /etc/apache2/magic
+# The mod_mime_magic module allows the server to use various hints from the
+# contents of the file itself to determine its type. The MIMEMagicFile
+# directive tells the module where the hint definitions are located.
+MIMEMagicFile /etc/apache2/magic
</IfModule>
# vim: ts=4 filetype=apache