tomcat-instance: deploy correct version of config files
parent
3e37800994
commit
aebd46e4d7
@ -0,0 +1,152 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
#
|
||||
# List of comma-separated packages that start with or equal this string
|
||||
# will cause a security exception to be thrown when
|
||||
# passed to checkPackageAccess unless the
|
||||
# corresponding RuntimePermission ("accessClassInPackage."+package) has
|
||||
# been granted.
|
||||
package.access=sun.,org.apache.catalina.,org.apache.coyote.,org.apache.jasper.,org.apache.tomcat.
|
||||
#
|
||||
# List of comma-separated packages that start with or equal this string
|
||||
# will cause a security exception to be thrown when
|
||||
# passed to checkPackageDefinition unless the
|
||||
# corresponding RuntimePermission ("defineClassInPackage."+package) has
|
||||
# been granted.
|
||||
#
|
||||
# by default, no packages are restricted for definition, and none of
|
||||
# the class loaders supplied with the JDK call checkPackageDefinition.
|
||||
#
|
||||
package.definition=sun.,java.,org.apache.catalina.,org.apache.coyote.,\
|
||||
org.apache.jasper.,org.apache.naming.,org.apache.tomcat.
|
||||
|
||||
#
|
||||
#
|
||||
# List of comma-separated paths defining the contents of the "common"
|
||||
# classloader. Prefixes should be used to define what is the repository type.
|
||||
# Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute.
|
||||
# If left as blank,the JVM system loader will be used as Catalina's "common"
|
||||
# loader.
|
||||
# Examples:
|
||||
# "foo": Add this folder as a class repository
|
||||
# "foo/*.jar": Add all the JARs of the specified folder as class
|
||||
# repositories
|
||||
# "foo/bar.jar": Add bar.jar as a class repository
|
||||
#
|
||||
# Note: Values are enclosed in double quotes ("...") in case either the
|
||||
# ${catalina.base} path or the ${catalina.home} path contains a comma.
|
||||
# Because double quotes are used for quoting, the double quote character
|
||||
# may not appear in a path.
|
||||
common.loader="${catalina.base}/lib","${catalina.base}/lib/*.jar","${catalina.home}/lib","${catalina.home}/lib/*.jar","${catalina.base}/common/classes","${catalina.base}/common/*.jar","${catalina.home}/common/classes","${catalina.home}/common/*.jar"
|
||||
|
||||
#
|
||||
# List of comma-separated paths defining the contents of the "server"
|
||||
# classloader. Prefixes should be used to define what is the repository type.
|
||||
# Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute.
|
||||
# If left as blank, the "common" loader will be used as Catalina's "server"
|
||||
# loader.
|
||||
# Examples:
|
||||
# "foo": Add this folder as a class repository
|
||||
# "foo/*.jar": Add all the JARs of the specified folder as class
|
||||
# repositories
|
||||
# "foo/bar.jar": Add bar.jar as a class repository
|
||||
#
|
||||
# Note: Values may be enclosed in double quotes ("...") in case either the
|
||||
# ${catalina.base} path or the ${catalina.home} path contains a comma.
|
||||
# Because double quotes are used for quoting, the double quote character
|
||||
# may not appear in a path.
|
||||
server.loader="${catalina.base}/server/classes","${catalina.base}/server/*.jar","${catalina.home}/server/classes","${catalina.home}/server/*.jar"
|
||||
|
||||
#
|
||||
# List of comma-separated paths defining the contents of the "shared"
|
||||
# classloader. Prefixes should be used to define what is the repository type.
|
||||
# Path may be relative to the CATALINA_BASE path or absolute. If left as blank,
|
||||
# the "common" loader will be used as Catalina's "shared" loader.
|
||||
# Examples:
|
||||
# "foo": Add this folder as a class repository
|
||||
# "foo/*.jar": Add all the JARs of the specified folder as class
|
||||
# repositories
|
||||
# "foo/bar.jar": Add bar.jar as a class repository
|
||||
# Please note that for single jars, e.g. bar.jar, you need the URL form
|
||||
# starting with file:.
|
||||
#
|
||||
# Note: Values may be enclosed in double quotes ("...") in case either the
|
||||
# ${catalina.base} path or the ${catalina.home} path contains a comma.
|
||||
# Because double quotes are used for quoting, the double quote character
|
||||
# may not appear in a path.
|
||||
shared.loader="${catalina.base}/shared/classes","${catalina.base}/shared/*.jar","${catalina.home}/shared/classes","${catalina.home}/shared/*.jar"
|
||||
|
||||
# Default list of JAR files that should not be scanned using the JarScanner
|
||||
# functionality. This is typically used to scan JARs for configuration
|
||||
# information. JARs that do not contain such information may be excluded from
|
||||
# the scan to speed up the scanning process. This is the default list. JARs on
|
||||
# this list are excluded from all scans. The list must be a comma separated list
|
||||
# of JAR file names.
|
||||
# The list of JARs to skip may be over-ridden at a Context level for individual
|
||||
# scan types by configuring a JarScanner with a nested JarScanFilter.
|
||||
# The JARs listed below include:
|
||||
# - Tomcat Bootstrap JARs
|
||||
# - Tomcat API JARs
|
||||
# - Catalina JARs
|
||||
# - Jasper JARs
|
||||
# - Tomcat JARs
|
||||
# - Common non-Tomcat JARs
|
||||
# - Test JARs (JUnit, Cobertura and dependencies)
|
||||
tomcat.util.scan.StandardJarScanFilter.jarsToSkip=\
|
||||
bootstrap.jar,commons-daemon.jar,tomcat-juli.jar,\
|
||||
annotations-api.jar,el-api.jar,jsp-api.jar,servlet-api.jar,websocket-api.jar,\
|
||||
jaspic-api.jar,\
|
||||
catalina.jar,catalina-ant.jar,catalina-ha.jar,catalina-storeconfig.jar,\
|
||||
catalina-tribes.jar,\
|
||||
jasper.jar,jasper-el.jar,ecj-*.jar,\
|
||||
tomcat-api.jar,tomcat-util.jar,tomcat-util-scan.jar,tomcat-coyote.jar,\
|
||||
tomcat-dbcp.jar,tomcat-jni.jar,tomcat-websocket.jar,\
|
||||
tomcat-i18n-en.jar,tomcat-i18n-es.jar,tomcat-i18n-fr.jar,tomcat-i18n-ja.jar,\
|
||||
tomcat-juli-adapters.jar,catalina-jmx-remote.jar,catalina-ws.jar,\
|
||||
tomcat-jdbc.jar,\
|
||||
tools.jar,\
|
||||
commons-beanutils*.jar,commons-codec*.jar,commons-collections*.jar,\
|
||||
commons-dbcp*.jar,commons-digester*.jar,commons-fileupload*.jar,\
|
||||
commons-httpclient*.jar,commons-io*.jar,commons-lang*.jar,commons-logging*.jar,\
|
||||
commons-math*.jar,commons-pool*.jar,\
|
||||
jstl.jar,taglibs-standard-spec-*.jar,\
|
||||
geronimo-spec-jaxrpc*.jar,wsdl4j*.jar,\
|
||||
ant.jar,ant-junit*.jar,aspectj*.jar,jmx.jar,h2*.jar,hibernate*.jar,httpclient*.jar,\
|
||||
jmx-tools.jar,jta*.jar,log4j*.jar,mail*.jar,slf4j*.jar,\
|
||||
xercesImpl.jar,xmlParserAPIs.jar,xml-apis.jar,\
|
||||
junit.jar,junit-*.jar,hamcrest-*.jar,easymock-*.jar,cglib-*.jar,\
|
||||
objenesis-*.jar,ant-launcher.jar,\
|
||||
cobertura-*.jar,asm-*.jar,dom4j-*.jar,icu4j-*.jar,jaxen-*.jar,jdom-*.jar,\
|
||||
jetty-*.jar,oro-*.jar,servlet-api-*.jar,tagsoup-*.jar,xmlParserAPIs-*.jar,\
|
||||
xom-*.jar
|
||||
|
||||
# Default list of JAR files that should be scanned that overrides the default
|
||||
# jarsToSkip list above. This is typically used to include a specific JAR that
|
||||
# has been excluded by a broad file name pattern in the jarsToSkip list.
|
||||
# The list of JARs to scan may be over-ridden at a Context level for individual
|
||||
# scan types by configuring a JarScanner with a nested JarScanFilter.
|
||||
tomcat.util.scan.StandardJarScanFilter.jarsToScan=\
|
||||
log4j-web*.jar,log4j-taglib*.jar,log4javascript*.jar,slf4j-taglib*.jar
|
||||
|
||||
# String cache configuration.
|
||||
tomcat.util.buf.StringCache.byte.enabled=true
|
||||
#tomcat.util.buf.StringCache.char.enabled=true
|
||||
#tomcat.util.buf.StringCache.trainThreshold=500000
|
||||
#tomcat.util.buf.StringCache.cacheSize=5000
|
||||
|
||||
# Allow for changes to HTTP request validation
|
||||
# WARNING: Using this option will expose the server to CVE-2016-6816
|
||||
#tomcat.util.http.parser.HttpParser.requestTargetAllow=|
|
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<!-- The contents of this file will be loaded for each web application -->
|
||||
<Context>
|
||||
|
||||
<!-- Default set of monitored resources. If one of these changes, the -->
|
||||
<!-- web application will be reloaded. -->
|
||||
<WatchedResource>WEB-INF/web.xml</WatchedResource>
|
||||
<WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>
|
||||
|
||||
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
|
||||
<!--
|
||||
<Manager pathname="" />
|
||||
-->
|
||||
</Context>
|
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<jaspic-providers xmlns="http://tomcat.apache.org/xml"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://tomcat.apache.org/xml jaspic-providers.xsd"
|
||||
version="1.0">
|
||||
<!-- No JASPIC providers configured by default -->
|
||||
</jaspic-providers>
|
@ -0,0 +1,56 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
handlers = 1catalina.org.apache.juli.AsyncFileHandler, 2localhost.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler
|
||||
|
||||
.handlers = 1catalina.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler
|
||||
|
||||
############################################################
|
||||
# Handler specific properties.
|
||||
# Describes specific configuration info for Handlers.
|
||||
############################################################
|
||||
|
||||
1catalina.org.apache.juli.AsyncFileHandler.level = FINE
|
||||
1catalina.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
|
||||
1catalina.org.apache.juli.AsyncFileHandler.prefix = catalina.
|
||||
|
||||
2localhost.org.apache.juli.AsyncFileHandler.level = FINE
|
||||
2localhost.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
|
||||
2localhost.org.apache.juli.AsyncFileHandler.prefix = localhost.
|
||||
|
||||
java.util.logging.ConsoleHandler.level = FINE
|
||||
java.util.logging.ConsoleHandler.formatter = org.apache.juli.OneLineFormatter
|
||||
|
||||
|
||||
############################################################
|
||||
# Facility specific properties.
|
||||
# Provides extra control for each logger.
|
||||
############################################################
|
||||
|
||||
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
|
||||
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.AsyncFileHandler
|
||||
|
||||
# For example, set the org.apache.catalina.util.LifecycleBase logger to log
|
||||
# each component that extends LifecycleBase changing state:
|
||||
#org.apache.catalina.util.LifecycleBase.level = FINE
|
||||
|
||||
# To see debug messages in TldLocationsCache, uncomment the following line:
|
||||
#org.apache.jasper.compiler.TldLocationsCache.level = FINE
|
||||
|
||||
# To see debug messages for HTTP/2 handling, uncomment the following line:
|
||||
#org.apache.coyote.http2.level = FINE
|
||||
|
||||
# To see debug messages for WebSocket handling, uncomment the following line:
|
||||
#org.apache.tomcat.websocket.level = FINE
|
@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<tomcat-users xmlns="http://tomcat.apache.org/xml"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
|
||||
version="1.0">
|
||||
<!--
|
||||
NOTE: By default, no user is included in the "manager-gui" role required
|
||||
to operate the "/manager/html" web application. If you wish to use this app,
|
||||
you must define such a user - the username and password are arbitrary. It is
|
||||
strongly recommended that you do NOT use one of the users in the commented out
|
||||
section below since they are intended for use with the examples web
|
||||
application.
|
||||
-->
|
||||
<!--
|
||||
NOTE: The sample user and role entries below are intended for use with the
|
||||
examples web application. They are wrapped in a comment and thus are ignored
|
||||
when reading this file. If you wish to configure these users for use with the
|
||||
examples web application, do not forget to remove the <!.. ..> that surrounds
|
||||
them. You will also need to set the passwords to something appropriate.
|
||||
-->
|
||||
<!--
|
||||
<role rolename="tomcat"/>
|
||||
<role rolename="role1"/>
|
||||
<user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
|
||||
<user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
|
||||
<user username="role1" password="<must-be-changed>" roles="role1"/>
|
||||
-->
|
||||
</tomcat-users>
|
@ -0,0 +1,4681 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
|
||||
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
|
||||
version="3.1">
|
||||
|
||||
<!-- ======================== Introduction ============================== -->
|
||||
<!-- This document defines default values for *all* web applications -->
|
||||
<!-- loaded into this instance of Tomcat. As each application is -->
|
||||
<!-- deployed, this file is processed, followed by the -->
|
||||
<!-- "/WEB-INF/web.xml" deployment descriptor from your own -->
|
||||
<!-- applications. -->
|
||||
<!-- -->
|
||||
<!-- WARNING: Do not configure application-specific resources here! -->
|
||||
<!-- They should go in the "/WEB-INF/web.xml" file in your application. -->
|
||||
|
||||
|
||||
<!-- ================== Built In Servlet Definitions ==================== -->
|
||||
|
||||
|
||||
<!-- The default servlet for all web applications, that serves static -->
|
||||
<!-- resources. It processes all requests that are not mapped to other -->
|
||||
<!-- servlets with servlet mappings (defined either here or in your own -->
|
||||
<!-- web.xml file). This servlet supports the following initialization -->
|
||||
<!-- parameters (default values are in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. Useful values are 0, 1, and -->
|
||||
<!-- 11 where higher values mean more detail. [0] -->
|
||||
<!-- -->
|
||||
<!-- fileEncoding Encoding to be used to read static resources -->
|
||||
<!-- [platform default] -->
|
||||
<!-- -->
|
||||
<!-- input Input buffer size (in bytes) when reading -->
|
||||
<!-- resources to be served. [2048] -->
|
||||
<!-- -->
|
||||
<!-- listings Should directory listings be produced if there -->
|
||||
<!-- is no welcome file in this directory? [false] -->
|
||||
<!-- WARNING: Listings for directories with many -->
|
||||
<!-- entries can be slow and may consume -->
|
||||
<!-- significant proportions of server resources. -->
|
||||
<!-- -->
|
||||
<!-- output Output buffer size (in bytes) when writing -->
|
||||
<!-- resources to be served. [2048] -->
|
||||
<!-- -->
|
||||
<!-- readonly Is this context "read only", so HTTP -->
|
||||
<!-- commands like PUT and DELETE are -->
|
||||
<!-- rejected? [true] -->
|
||||
<!-- -->
|
||||
<!-- readmeFile File to display together with the directory -->
|
||||
<!-- contents. [null] -->
|
||||
<!-- -->
|
||||
<!-- sendfileSize If the connector used supports sendfile, this -->
|
||||
<!-- represents the minimal file size in KB for -->
|
||||
<!-- which sendfile will be used. Use a negative -->
|
||||
<!-- value to always disable sendfile. [48] -->
|
||||
<!-- -->
|
||||
<!-- useAcceptRanges Should the Accept-Ranges header be included -->
|
||||
<!-- in responses where appropriate? [true] -->
|
||||
<!-- -->
|
||||
<!-- For directory listing customization. Checks localXsltFile, then -->
|
||||
<!-- globalXsltFile, then defaults to original behavior. -->
|
||||
<!-- -->
|
||||
<!-- localXsltFile Make directory listings an XML doc and -->
|
||||
<!-- pass the result to this style sheet residing -->
|
||||
<!-- in that directory. This overrides -->
|
||||
<!-- contextXsltFile and globalXsltFile[null] -->
|
||||
<!-- -->
|
||||
<!-- contextXsltFile Make directory listings an XML doc and -->
|
||||
<!-- pass the result to this style sheet which is -->
|
||||
<!-- relative to the context root. This overrides -->
|
||||
<!-- globalXsltFile[null] -->
|
||||
<!-- -->
|
||||
<!-- globalXsltFile Site wide configuration version of -->
|
||||
<!-- localXsltFile. This argument must either be an -->
|
||||
<!-- absolute or relative (to either -->
|
||||
<!-- $CATALINA_BASE/conf or $CATALINA_HOME/conf) -->
|
||||
<!-- path that points to a location below either -->
|
||||
<!-- $CATALINA_BASE/conf (checked first) or -->
|
||||
<!-- $CATALINA_HOME/conf (checked second).[null] -->
|
||||
<!-- -->
|
||||
<!-- showServerInfo Should server information be presented in the -->
|
||||
<!-- response sent to clients when directory -->
|
||||
<!-- listings is enabled? [true] -->
|
||||
|
||||
<servlet>
|
||||
<servlet-name>default</servlet-name>
|
||||
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>listings</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>1</load-on-startup>
|
||||
</servlet>
|
||||
|
||||
|
||||
<!-- The JSP page compiler and execution servlet, which is the mechanism -->
|
||||
<!-- used by Tomcat to support JSP pages. Traditionally, this servlet -->
|
||||
<!-- is mapped to the URL pattern "*.jsp". This servlet supports the -->
|
||||
<!-- following initialization parameters (default values are in square -->
|
||||
<!-- brackets): -->
|
||||
<!-- -->
|
||||
<!-- checkInterval If development is false and checkInterval is -->
|
||||
<!-- greater than zero, background compilations are -->
|
||||
<!-- enabled. checkInterval is the time in seconds -->
|
||||
<!-- between checks to see if a JSP page (and its -->
|
||||
<!-- dependent files) needs to be recompiled. [0] -->
|
||||
<!-- -->
|
||||
<!-- classdebuginfo Should the class file be compiled with -->
|
||||
<!-- debugging information? [true] -->
|
||||
<!-- -->
|
||||
<!-- classpath What class path should I use while compiling -->
|
||||
<!-- generated servlets? [Created dynamically -->
|
||||
<!-- based on the current web application] -->
|
||||
<!-- -->
|
||||
<!-- compiler Which compiler Ant should use to compile JSP -->
|
||||
<!-- pages. See the jasper documentation for more -->
|
||||
<!-- information. -->
|
||||
<!-- -->
|
||||
<!-- compilerSourceVM Compiler source VM. [1.7] -->
|
||||
<!-- -->
|
||||
<!-- compilerTargetVM Compiler target VM. [1.7] -->
|
||||
<!-- -->
|
||||
<!-- development Is Jasper used in development mode? If true, -->
|
||||
<!-- the frequency at which JSPs are checked for -->
|
||||
<!-- modification may be specified via the -->
|
||||
<!-- modificationTestInterval parameter. [true] -->
|
||||
<!-- -->
|
||||
<!-- displaySourceFragment -->
|
||||
<!-- Should a source fragment be included in -->
|
||||
<!-- exception messages? [true] -->
|
||||
<!-- -->
|
||||
<!-- dumpSmap Should the SMAP info for JSR45 debugging be -->
|
||||
<!-- dumped to a file? [false] -->
|
||||
<!-- False if suppressSmap is true -->
|
||||
<!-- -->
|
||||
<!-- enablePooling Determines whether tag handler pooling is -->
|
||||
<!-- enabled. This is a compilation option. It will -->
|
||||
<!-- not alter the behaviour of JSPs that have -->
|
||||
<!-- already been compiled. [true] -->
|
||||
<!-- -->
|
||||
<!-- engineOptionsClass Allows specifying the Options class used to -->
|
||||
<!-- configure Jasper. If not present, the default -->
|
||||
<!-- EmbeddedServletOptions will be used. -->
|
||||
<!-- This option is ignored when running under a -->
|
||||
<!-- SecurityManager. -->
|
||||
<!-- -->
|
||||
<!-- errorOnUseBeanInvalidClassAttribute -->
|
||||
<!-- Should Jasper issue an error when the value of -->
|
||||
<!-- the class attribute in an useBean action is -->
|
||||
<!-- not a valid bean class? [true] -->
|
||||
<!-- -->
|
||||
<!-- fork Tell Ant to fork compiles of JSP pages so that -->
|
||||
<!-- a separate JVM is used for JSP page compiles -->
|
||||
<!-- from the one Tomcat is running in. [true] -->
|
||||
<!-- -->
|
||||
<!-- genStringAsCharArray -->
|
||||
<!-- Should text strings be generated as char -->
|
||||
<!-- arrays, to improve performance in some cases? -->
|
||||
<!-- [false] -->
|
||||
<!-- -->
|
||||
<!-- ieClassId The class-id value to be sent to Internet -->
|
||||
<!-- Explorer when using <jsp:plugin> tags. -->
|
||||
<!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] -->
|
||||
<!-- -->
|
||||
<!-- javaEncoding Java file encoding to use for generating java -->
|
||||
<!-- source files. [UTF8] -->
|
||||
<!-- -->
|
||||
<!-- keepgenerated Should we keep the generated Java source code -->
|
||||
<!-- for each page instead of deleting it? [true] -->
|
||||
<!-- -->
|
||||
<!-- mappedfile Should we generate static content with one -->
|
||||
<!-- print statement per input line, to ease -->
|
||||
<!-- debugging? [true] -->
|
||||
<!-- -->
|
||||
<!-- maxLoadedJsps The maximum number of JSPs that will be loaded -->
|
||||
<!-- for a web application. If more than this -->
|
||||
<!-- number of JSPs are loaded, the least recently -->
|
||||
<!-- used JSPs will be unloaded so that the number -->
|
||||
<!-- of JSPs loaded at any one time does not exceed -->
|
||||
<!-- this limit. A value of zero or less indicates -->
|
||||
<!-- no limit. [-1] -->
|
||||
<!-- -->
|
||||
<!-- jspIdleTimeout The amount of time in seconds a JSP can be -->
|
||||
<!-- idle before it is unloaded. A value of zero -->
|
||||
<!-- or less indicates never unload. [-1] -->
|
||||
<!-- -->
|
||||
<!-- modificationTestInterval -->
|
||||
<!-- Causes a JSP (and its dependent files) to not -->
|
||||
<!-- be checked for modification during the -->
|
||||
<!-- specified time interval (in seconds) from the -->
|
||||
<!-- last time the JSP was checked for -->
|
||||
<!-- modification. A value of 0 will cause the JSP -->
|
||||
<!-- to be checked on every access. -->
|
||||
<!-- Used in development mode only. [4] -->
|
||||
<!-- -->
|
||||
<!-- recompileOnFail If a JSP compilation fails should the -->
|
||||
<!-- modificationTestInterval be ignored and the -->
|
||||
<!-- next access trigger a re-compilation attempt? -->
|
||||
<!-- Used in development mode only and is disabled -->
|
||||
<!-- by default as compilation may be expensive and -->
|
||||
<!-- could lead to excessive resource usage. -->
|
||||
<!-- [false] -->
|
||||
<!-- -->
|
||||
<!-- scratchdir What scratch directory should we use when -->
|
||||
<!-- compiling JSP pages? [default work directory -->
|
||||
<!-- for the current web application] -->
|
||||
<!-- This option is ignored when running under a -->
|
||||
<!-- SecurityManager. -->
|
||||
<!-- -->
|
||||
<!-- suppressSmap Should the generation of SMAP info for JSR45 -->
|
||||
<!-- debugging be suppressed? [false] -->
|
||||
<!-- -->
|
||||
<!-- trimSpaces Should white spaces in template text between -->
|
||||
<!-- actions or directives be trimmed? [false] -->
|
||||
<!-- -->
|
||||
<!-- xpoweredBy Determines whether X-Powered-By response -->
|
||||
<!-- header is added by generated servlet. [false] -->
|
||||
<!-- -->
|
||||
<!-- strictQuoteEscaping When scriptlet expressions are used for -->
|
||||
<!-- attribute values, should the rules in JSP.1.6 -->
|
||||
<!-- for the escaping of quote characters be -->
|
||||
<!-- strictly applied? [true] -->
|
||||
<!-- -->
|
||||
<!-- quoteAttributeEL When EL is used in an attribute value on a -->
|
||||
<!-- JSP page should the rules for quoting of -->
|
||||
<!-- attributes described in JSP.1.6 be applied to -->
|
||||
<!-- the expression? [true] -->
|
||||
|
||||
<servlet>
|
||||
<servlet-name>jsp</servlet-name>
|
||||
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>fork</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>xpoweredBy</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>3</load-on-startup>
|
||||
</servlet>
|
||||
|
||||
|
||||
<!-- NOTE: An SSI Filter is also available as an alternative SSI -->
|
||||
<!-- implementation. Use either the Servlet or the Filter but NOT both. -->
|
||||
<!-- -->
|
||||
<!-- Server Side Includes processing servlet, which processes SSI -->
|
||||
<!-- directives in HTML pages consistent with similar support in web -->
|
||||
<!-- servers like Apache. Traditionally, this servlet is mapped to the -->
|
||||
<!-- URL pattern "*.shtml". This servlet supports the following -->
|
||||
<!-- initialization parameters (default values are in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- buffered Should output from this servlet be buffered? -->
|
||||
<!-- (0=false, 1=true) [0] -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. [0] -->
|
||||
<!-- -->
|
||||
<!-- expires The number of seconds before a page with SSI -->
|
||||
<!-- directives will expire. [No default] -->
|
||||
<!-- -->
|
||||
<!-- isVirtualWebappRelative -->
|
||||
<!-- Should "virtual" paths be interpreted as -->
|
||||
<!-- relative to the context root, instead of -->
|
||||
<!-- the server root? [false] -->
|
||||
<!-- -->
|
||||
<!-- inputEncoding The encoding to assume for SSI resources if -->
|
||||
<!-- one is not available from the resource. -->
|
||||
<!-- [Platform default] -->
|
||||
<!-- -->
|
||||
<!-- outputEncoding The encoding to use for the page that results -->
|
||||
<!-- from the SSI processing. [UTF-8] -->
|
||||
<!-- -->
|
||||
<!-- allowExec Is use of the exec command enabled? [false] -->
|
||||
|
||||
<!--
|
||||
<servlet>
|
||||
<servlet-name>ssi</servlet-name>
|
||||
<servlet-class>
|
||||
org.apache.catalina.ssi.SSIServlet
|
||||
</servlet-class>
|
||||
<init-param>
|
||||
<param-name>buffered</param-name>
|
||||
<param-value>1</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>expires</param-name>
|
||||
<param-value>666</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>isVirtualWebappRelative</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>4</load-on-startup>
|
||||
</servlet>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Common Gateway Includes (CGI) processing servlet, which supports -->
|
||||
<!-- execution of external applications that conform to the CGI spec -->
|
||||
<!-- requirements. Typically, this servlet is mapped to the URL pattern -->
|
||||
<!-- "/cgi-bin/*", which means that any CGI applications that are -->
|
||||
<!-- executed must be present within the web application. This servlet -->
|
||||
<!-- supports the following initialization parameters (default values -->
|
||||
<!-- are in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- cgiPathPrefix The CGI search path will start at -->
|
||||
<!-- webAppRootDir + File.separator + this prefix. -->
|
||||
<!-- If not set, then webAppRootDir is used. -->
|
||||
<!-- Recommended value: WEB-INF/cgi -->
|
||||
<!-- -->
|
||||
<!-- executable Name of the executable used to run the -->
|
||||
<!-- script. [perl] -->
|
||||
<!-- -->
|
||||
<!-- envHttpHeaders A regular expression used to select the HTTP -->
|
||||
<!-- headers passed to the CGI process as -->
|
||||
<!-- environment variables. Note that headers are -->
|
||||
<!-- converted to upper case before matching and -->
|
||||
<!-- that the entire header name must match the -->
|
||||
<!-- pattern. -->
|
||||
<!-- [ACCEPT[-0-9A-Z]*|CACHE-CONTROL|COOKIE|HOST| -->
|
||||
<!-- IF-[-0-9A-Z]*|REFERER|USER-AGENT] -->
|
||||
<!-- -->
|
||||
<!-- parameterEncoding Name of parameter encoding to be used with -->
|
||||
<!-- CGI servlet. -->
|
||||
<!-- [System.getProperty("file.encoding","UTF-8")] -->
|
||||
<!-- -->
|
||||
<!-- passShellEnvironment Should the shell environment variables (if -->
|
||||
<!-- any) be passed to the CGI script? [false] -->
|
||||
<!-- -->
|
||||
<!-- stderrTimeout The time (in milliseconds) to wait for the -->
|
||||
<!-- reading of stderr to complete before -->
|
||||
<!-- terminating the CGI process. [2000] -->
|
||||
|
||||
<!--
|
||||
<servlet>
|
||||
<servlet-name>cgi</servlet-name>
|
||||
<servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>cgiPathPrefix</param-name>
|
||||
<param-value>WEB-INF/cgi</param-value>
|
||||
</init-param>
|
||||
<load-on-startup>5</load-on-startup>
|
||||
</servlet>
|
||||
-->
|
||||
|
||||
|
||||
<!-- ================ Built In Servlet Mappings ========================= -->
|
||||
|
||||
|
||||
<!-- The servlet mappings for the built in servlets defined above. Note -->
|
||||
<!-- that, by default, the CGI and SSI servlets are *not* mapped. You -->
|
||||
<!-- must uncomment these mappings (or add them to your application's own -->
|
||||
<!-- web.xml deployment descriptor) to enable these services -->
|
||||
|
||||
<!-- The mapping for the default servlet -->
|
||||
<servlet-mapping>
|
||||
<servlet-name>default</servlet-name>
|
||||
<url-pattern>/</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- The mappings for the JSP servlet -->
|
||||
<servlet-mapping>
|
||||
<servlet-name>jsp</servlet-name>
|
||||
<url-pattern>*.jsp</url-pattern>
|
||||
<url-pattern>*.jspx</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- The mapping for the SSI servlet -->
|
||||
<!--
|
||||
<servlet-mapping>
|
||||
<servlet-name>ssi</servlet-name>
|
||||
<url-pattern>*.shtml</url-pattern>
|
||||
</servlet-mapping>
|
||||
-->
|
||||
|
||||
<!-- The mapping for the CGI Gateway servlet -->
|
||||
|
||||
<!--
|
||||
<servlet-mapping>
|
||||
<servlet-name>cgi</servlet-name>
|
||||
<url-pattern>/cgi-bin/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
-->
|
||||
|
||||
|
||||
<!-- ================== Built In Filter Definitions ===================== -->
|
||||
|
||||
<!-- A filter that sets various security related HTTP Response headers. -->
|
||||
<!-- This filter supports the following initialization parameters -->
|
||||
<!-- (default values are in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- hstsEnabled Should the HTTP Strict Transport Security -->
|
||||
<!-- (HSTS) header be added to the response? See -->
|
||||
<!-- RFC 6797 for more information on HSTS. [true] -->
|
||||
<!-- -->
|
||||
<!-- hstsMaxAgeSeconds The max age value that should be used in the -->
|
||||
<!-- HSTS header. Negative values will be treated -->
|
||||
<!-- as zero. [0] -->
|
||||
<!-- -->
|
||||
<!-- hstsIncludeSubDomains -->
|
||||
<!-- Should the includeSubDomains parameter be -->
|
||||
<!-- included in the HSTS header. -->
|
||||
<!-- -->
|
||||
<!-- antiClickJackingEnabled -->
|
||||
<!-- Should the anti click-jacking header -->
|
||||
<!-- X-Frame-Options be added to every response? -->
|
||||
<!-- [true] -->
|
||||
<!-- -->
|
||||
<!-- antiClickJackingOption -->
|
||||
<!-- What value should be used for the header. Must -->
|
||||
<!-- be one of DENY, SAMEORIGIN, ALLOW-FROM -->
|
||||
<!-- (case-insensitive). [DENY] -->
|
||||
<!-- -->
|
||||
<!-- antiClickJackingUri IF ALLOW-FROM is used, what URI should be -->
|
||||
<!-- allowed? [] -->
|
||||
<!-- -->
|
||||
<!-- blockContentTypeSniffingEnabled -->
|
||||
<!-- Should the header that blocks content type -->
|
||||
<!-- sniffing be added to every response? [true] -->
|
||||
<!--
|
||||
<filter>
|
||||
<filter-name>httpHeaderSecurity</filter-name>
|
||||
<filter-class>org.apache.catalina.filters.HttpHeaderSecurityFilter</filter-class>
|
||||
<async-supported>true</async-supported>
|
||||
</filter>
|
||||
-->
|
||||
|
||||
<!-- A filter that sets character encoding that is used to decode -->
|
||||
<!-- parameters in a POST request -->
|
||||
<!--
|
||||
<filter>
|
||||
<filter-name>setCharacterEncodingFilter</filter-name>
|
||||
<filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>
|
||||
<init-param>
|
||||
<param-name>encoding</param-name>
|
||||
<param-value>UTF-8</param-value>
|
||||
</init-param>
|
||||
<async-supported>true</async-supported>
|
||||
</filter>
|
||||
-->
|
||||
|
||||
<!-- A filter that triggers request parameters parsing and rejects the -->
|
||||
<!-- request if some parameters were skipped because of parsing errors or -->
|
||||
<!-- request size limitations. -->
|
||||
<!--
|
||||
<filter>
|
||||
<filter-name>failedRequestFilter</filter-name>
|
||||
<filter-class>
|
||||
org.apache.catalina.filters.FailedRequestFilter
|
||||
</filter-class>
|
||||
<async-supported>true</async-supported>
|
||||
</filter>
|
||||
-->
|
||||
|
||||
|
||||
<!-- NOTE: An SSI Servlet is also available as an alternative SSI -->
|
||||
<!-- implementation. Use either the Servlet or the Filter but NOT both. -->
|
||||
<!-- -->
|
||||
<!-- Server Side Includes processing filter, which processes SSI -->
|
||||
<!-- directives in HTML pages consistent with similar support in web -->
|
||||
<!-- servers like Apache. Traditionally, this filter is mapped to the -->
|
||||
<!-- URL pattern "*.shtml", though it can be mapped to "*" as it will -->
|
||||
<!-- selectively enable/disable SSI processing based on mime types. For -->
|
||||
<!-- this to work you will need to uncomment the .shtml mime type -->
|
||||
<!-- definition towards the bottom of this file. -->
|
||||
<!-- The contentType init param allows you to apply SSI processing to JSP -->
|
||||
<!-- pages, javascript, or any other content you wish. This filter -->
|
||||
<!-- supports the following initialization parameters (default values are -->
|
||||
<!-- in square brackets): -->
|
||||
<!-- -->
|
||||
<!-- contentType A regex pattern that must be matched before -->
|
||||
<!-- SSI processing is applied. -->
|
||||
<!-- [text/x-server-parsed-html(;.*)?] -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. [0] -->
|
||||
<!-- -->
|
||||
<!-- expires The number of seconds before a page with SSI -->
|
||||
<!-- directives will expire. [No default] -->
|
||||
<!-- -->
|
||||
<!-- isVirtualWebappRelative -->
|
||||
<!-- Should "virtual" paths be interpreted as -->
|
||||
<!-- relative to the context root, instead of -->
|
||||
<!-- the server root? [false] -->
|
||||
<!-- -->
|
||||
<!-- allowExec Is use of the exec command enabled? [false] -->
|
||||
|
||||
<!--
|
||||
<filter>
|
||||
<filter-name>ssi</filter-name>
|
||||
<filter-class>
|
||||
org.apache.catalina.ssi.SSIFilter
|
||||
</filter-class>
|
||||
<init-param>
|
||||
<param-name>contentType</param-name>
|
||||
<param-value>text/x-server-parsed-html(;.*)?</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>expires</param-name>
|
||||
<param-value>666</param-value>
|
||||
</init-param>
|
||||
<init-param>
|
||||
<param-name>isVirtualWebappRelative</param-name>
|
||||
<param-value>false</param-value>
|
||||
</init-param>
|
||||
</filter>
|
||||
-->
|
||||
|
||||
|
||||
<!-- ==================== Built In Filter Mappings ====================== -->
|
||||
|
||||
<!-- The mapping for the HTTP header security Filter -->
|
||||
<!--
|
||||
<filter-mapping>
|
||||
<filter-name>httpHeaderSecurity</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
<dispatcher>REQUEST</dispatcher>
|
||||
</filter-mapping>
|
||||
-->
|
||||
|
||||
<!-- The mapping for the Set Character Encoding Filter -->
|
||||
<!--
|
||||
<filter-mapping>
|
||||
<filter-name>setCharacterEncodingFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
</filter-mapping>
|
||||
-->
|
||||
|
||||
<!-- The mapping for the Failed Request Filter -->
|
||||
<!--
|
||||
<filter-mapping>
|
||||
<filter-name>failedRequestFilter</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
</filter-mapping>
|
||||
-->
|
||||
|
||||
<!-- The mapping for the SSI Filter -->
|
||||
<!--
|
||||
<filter-mapping>
|
||||
<filter-name>ssi</filter-name>
|
||||
<url-pattern>*.shtml</url-pattern>
|
||||
</filter-mapping>
|
||||
-->
|
||||
|
||||
|
||||
<!-- ==================== Default Session Configuration ================= -->
|
||||
<!-- You can set the default session timeout (in minutes) for all newly -->
|
||||
<!-- created sessions by modifying the value below. -->
|
||||
|
||||
<session-config>
|
||||
<session-timeout>30</session-timeout>
|
||||
</session-config>
|
||||
|
||||
|
||||
<!-- ===================== Default MIME Type Mappings =================== -->
|
||||
<!-- When serving static resources, Tomcat will automatically generate -->
|
||||
<!-- a "Content-Type" header based on the resource's filename extension, -->
|
||||
<!-- based on these mappings. Additional mappings can be added here (to -->
|
||||
<!-- apply to all web applications), or in your own application's web.xml -->
|
||||
<!-- deployment descriptor. -->
|
||||
<!-- Note: Extensions are always matched in a case-insensitive manner. -->
|
||||
|
||||
<mime-mapping>
|
||||
<extension>123</extension>
|
||||
<mime-type>application/vnd.lotus-1-2-3</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>3dml</extension>
|
||||
<mime-type>text/vnd.in3d.3dml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>3ds</extension>
|
||||
<mime-type>image/x-3ds</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>3g2</extension>
|
||||
<mime-type>video/3gpp2</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>3gp</extension>
|
||||
<mime-type>video/3gpp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>7z</extension>
|
||||
<mime-type>application/x-7z-compressed</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aab</extension>
|
||||
<mime-type>application/x-authorware-bin</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aac</extension>
|
||||
<mime-type>audio/x-aac</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aam</extension>
|
||||
<mime-type>application/x-authorware-map</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aas</extension>
|
||||
<mime-type>application/x-authorware-seg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>abs</extension>
|
||||
<mime-type>audio/x-mpeg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>abw</extension>
|
||||
<mime-type>application/x-abiword</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ac</extension>
|
||||
<mime-type>application/pkix-attr-cert</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>acc</extension>
|
||||
<mime-type>application/vnd.americandynamics.acc</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ace</extension>
|
||||
<mime-type>application/x-ace-compressed</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>acu</extension>
|
||||
<mime-type>application/vnd.acucobol</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>acutc</extension>
|
||||
<mime-type>application/vnd.acucorp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>adp</extension>
|
||||
<mime-type>audio/adpcm</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aep</extension>
|
||||
<mime-type>application/vnd.audiograph</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>afm</extension>
|
||||
<mime-type>application/x-font-type1</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>afp</extension>
|
||||
<mime-type>application/vnd.ibm.modcap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ahead</extension>
|
||||
<mime-type>application/vnd.ahead.space</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ai</extension>
|
||||
<mime-type>application/postscript</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aif</extension>
|
||||
<mime-type>audio/x-aiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aifc</extension>
|
||||
<mime-type>audio/x-aiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aiff</extension>
|
||||
<mime-type>audio/x-aiff</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aim</extension>
|
||||
<mime-type>application/x-aim</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>air</extension>
|
||||
<mime-type>application/vnd.adobe.air-application-installer-package+zip</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ait</extension>
|
||||
<mime-type>application/vnd.dvb.ait</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ami</extension>
|
||||
<mime-type>application/vnd.amiga.ami</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>anx</extension>
|
||||
<mime-type>application/annodex</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>apk</extension>
|
||||
<mime-type>application/vnd.android.package-archive</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>appcache</extension>
|
||||
<mime-type>text/cache-manifest</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>application</extension>
|
||||
<mime-type>application/x-ms-application</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>apr</extension>
|
||||
<mime-type>application/vnd.lotus-approach</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>arc</extension>
|
||||
<mime-type>application/x-freearc</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>art</extension>
|
||||
<mime-type>image/x-jg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>asc</extension>
|
||||
<mime-type>application/pgp-signature</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>asf</extension>
|
||||
<mime-type>video/x-ms-asf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>asm</extension>
|
||||
<mime-type>text/x-asm</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aso</extension>
|
||||
<mime-type>application/vnd.accpac.simply.aso</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>asx</extension>
|
||||
<mime-type>video/x-ms-asf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>atc</extension>
|
||||
<mime-type>application/vnd.acucorp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>atom</extension>
|
||||
<mime-type>application/atom+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>atomcat</extension>
|
||||
<mime-type>application/atomcat+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>atomsvc</extension>
|
||||
<mime-type>application/atomsvc+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>atx</extension>
|
||||
<mime-type>application/vnd.antix.game-component</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>au</extension>
|
||||
<mime-type>audio/basic</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>avi</extension>
|
||||
<mime-type>video/x-msvideo</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>avx</extension>
|
||||
<mime-type>video/x-rad-screenplay</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>aw</extension>
|
||||
<mime-type>application/applixware</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>axa</extension>
|
||||
<mime-type>audio/annodex</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>axv</extension>
|
||||
<mime-type>video/annodex</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>azf</extension>
|
||||
<mime-type>application/vnd.airzip.filesecure.azf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>azs</extension>
|
||||
<mime-type>application/vnd.airzip.filesecure.azs</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>azw</extension>
|
||||
<mime-type>application/vnd.amazon.ebook</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bat</extension>
|
||||
<mime-type>application/x-msdownload</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bcpio</extension>
|
||||
<mime-type>application/x-bcpio</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bdf</extension>
|
||||
<mime-type>application/x-font-bdf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bdm</extension>
|
||||
<mime-type>application/vnd.syncml.dm+wbxml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bed</extension>
|
||||
<mime-type>application/vnd.realvnc.bed</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bh2</extension>
|
||||
<mime-type>application/vnd.fujitsu.oasysprs</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bin</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>blb</extension>
|
||||
<mime-type>application/x-blorb</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>blorb</extension>
|
||||
<mime-type>application/x-blorb</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bmi</extension>
|
||||
<mime-type>application/vnd.bmi</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bmp</extension>
|
||||
<mime-type>image/bmp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>body</extension>
|
||||
<mime-type>text/html</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>book</extension>
|
||||
<mime-type>application/vnd.framemaker</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>box</extension>
|
||||
<mime-type>application/vnd.previewsystems.box</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>boz</extension>
|
||||
<mime-type>application/x-bzip2</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bpk</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>btif</extension>
|
||||
<mime-type>image/prs.btif</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bz</extension>
|
||||
<mime-type>application/x-bzip</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>bz2</extension>
|
||||
<mime-type>application/x-bzip2</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c</extension>
|
||||
<mime-type>text/x-c</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c11amc</extension>
|
||||
<mime-type>application/vnd.cluetrust.cartomobile-config</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c11amz</extension>
|
||||
<mime-type>application/vnd.cluetrust.cartomobile-config-pkg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c4d</extension>
|
||||
<mime-type>application/vnd.clonk.c4group</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c4f</extension>
|
||||
<mime-type>application/vnd.clonk.c4group</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c4g</extension>
|
||||
<mime-type>application/vnd.clonk.c4group</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c4p</extension>
|
||||
<mime-type>application/vnd.clonk.c4group</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>c4u</extension>
|
||||
<mime-type>application/vnd.clonk.c4group</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cab</extension>
|
||||
<mime-type>application/vnd.ms-cab-compressed</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>caf</extension>
|
||||
<mime-type>audio/x-caf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cap</extension>
|
||||
<mime-type>application/vnd.tcpdump.pcap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>car</extension>
|
||||
<mime-type>application/vnd.curl.car</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cat</extension>
|
||||
<mime-type>application/vnd.ms-pki.seccat</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cb7</extension>
|
||||
<mime-type>application/x-cbr</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cba</extension>
|
||||
<mime-type>application/x-cbr</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cbr</extension>
|
||||
<mime-type>application/x-cbr</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cbt</extension>
|
||||
<mime-type>application/x-cbr</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cbz</extension>
|
||||
<mime-type>application/x-cbr</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cc</extension>
|
||||
<mime-type>text/x-c</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cct</extension>
|
||||
<mime-type>application/x-director</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ccxml</extension>
|
||||
<mime-type>application/ccxml+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdbcmsg</extension>
|
||||
<mime-type>application/vnd.contact.cmsg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdf</extension>
|
||||
<mime-type>application/x-cdf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdkey</extension>
|
||||
<mime-type>application/vnd.mediastation.cdkey</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdmia</extension>
|
||||
<mime-type>application/cdmi-capability</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdmic</extension>
|
||||
<mime-type>application/cdmi-container</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdmid</extension>
|
||||
<mime-type>application/cdmi-domain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdmio</extension>
|
||||
<mime-type>application/cdmi-object</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdmiq</extension>
|
||||
<mime-type>application/cdmi-queue</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdx</extension>
|
||||
<mime-type>chemical/x-cdx</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdxml</extension>
|
||||
<mime-type>application/vnd.chemdraw+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cdy</extension>
|
||||
<mime-type>application/vnd.cinderella</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cer</extension>
|
||||
<mime-type>application/pkix-cert</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cfs</extension>
|
||||
<mime-type>application/x-cfs-compressed</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cgm</extension>
|
||||
<mime-type>image/cgm</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>chat</extension>
|
||||
<mime-type>application/x-chat</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>chm</extension>
|
||||
<mime-type>application/vnd.ms-htmlhelp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>chrt</extension>
|
||||
<mime-type>application/vnd.kde.kchart</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cif</extension>
|
||||
<mime-type>chemical/x-cif</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cii</extension>
|
||||
<mime-type>application/vnd.anser-web-certificate-issue-initiation</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cil</extension>
|
||||
<mime-type>application/vnd.ms-artgalry</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cla</extension>
|
||||
<mime-type>application/vnd.claymore</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>class</extension>
|
||||
<mime-type>application/java</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>clkk</extension>
|
||||
<mime-type>application/vnd.crick.clicker.keyboard</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>clkp</extension>
|
||||
<mime-type>application/vnd.crick.clicker.palette</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>clkt</extension>
|
||||
<mime-type>application/vnd.crick.clicker.template</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>clkw</extension>
|
||||
<mime-type>application/vnd.crick.clicker.wordbank</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>clkx</extension>
|
||||
<mime-type>application/vnd.crick.clicker</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>clp</extension>
|
||||
<mime-type>application/x-msclip</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cmc</extension>
|
||||
<mime-type>application/vnd.cosmocaller</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cmdf</extension>
|
||||
<mime-type>chemical/x-cmdf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cml</extension>
|
||||
<mime-type>chemical/x-cml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cmp</extension>
|
||||
<mime-type>application/vnd.yellowriver-custom-menu</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cmx</extension>
|
||||
<mime-type>image/x-cmx</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cod</extension>
|
||||
<mime-type>application/vnd.rim.cod</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>com</extension>
|
||||
<mime-type>application/x-msdownload</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>conf</extension>
|
||||
<mime-type>text/plain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cpio</extension>
|
||||
<mime-type>application/x-cpio</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cpp</extension>
|
||||
<mime-type>text/x-c</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cpt</extension>
|
||||
<mime-type>application/mac-compactpro</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>crd</extension>
|
||||
<mime-type>application/x-mscardfile</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>crl</extension>
|
||||
<mime-type>application/pkix-crl</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>crt</extension>
|
||||
<mime-type>application/x-x509-ca-cert</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cryptonote</extension>
|
||||
<mime-type>application/vnd.rig.cryptonote</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>csh</extension>
|
||||
<mime-type>application/x-csh</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>csml</extension>
|
||||
<mime-type>chemical/x-csml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>csp</extension>
|
||||
<mime-type>application/vnd.commonspace</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>css</extension>
|
||||
<mime-type>text/css</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cst</extension>
|
||||
<mime-type>application/x-director</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>csv</extension>
|
||||
<mime-type>text/csv</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cu</extension>
|
||||
<mime-type>application/cu-seeme</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>curl</extension>
|
||||
<mime-type>text/vnd.curl</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cww</extension>
|
||||
<mime-type>application/prs.cww</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cxt</extension>
|
||||
<mime-type>application/x-director</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>cxx</extension>
|
||||
<mime-type>text/x-c</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dae</extension>
|
||||
<mime-type>model/vnd.collada+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>daf</extension>
|
||||
<mime-type>application/vnd.mobius.daf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dart</extension>
|
||||
<mime-type>application/vnd.dart</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dataless</extension>
|
||||
<mime-type>application/vnd.fdsn.seed</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>davmount</extension>
|
||||
<mime-type>application/davmount+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dbk</extension>
|
||||
<mime-type>application/docbook+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dcr</extension>
|
||||
<mime-type>application/x-director</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dcurl</extension>
|
||||
<mime-type>text/vnd.curl.dcurl</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dd2</extension>
|
||||
<mime-type>application/vnd.oma.dd2+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>ddd</extension>
|
||||
<mime-type>application/vnd.fujixerox.ddd</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>deb</extension>
|
||||
<mime-type>application/x-debian-package</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>def</extension>
|
||||
<mime-type>text/plain</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>deploy</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>der</extension>
|
||||
<mime-type>application/x-x509-ca-cert</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dfac</extension>
|
||||
<mime-type>application/vnd.dreamfactory</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dgc</extension>
|
||||
<mime-type>application/x-dgc-compressed</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dib</extension>
|
||||
<mime-type>image/bmp</mime-type>
|
||||
</mime-mapping>
|
||||