tomcat-instance: deploy all conf from ansible
This commit is contained in:
parent
0f68c0802a
commit
30cf02c6d4
6 changed files with 4886 additions and 12 deletions
133
tomcat-instance/files/catalina.properties
Normal file
133
tomcat-instance/files/catalina.properties
Normal file
|
@ -0,0 +1,133 @@
|
|||
# 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.naming.resources.,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
|
||||
common.loader=${catalina.base}/lib,${catalina.base}/lib/*.jar,${catalina.home}/lib,${catalina.home}/lib/*.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
|
||||
server.loader=${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:.
|
||||
shared.loader=${catalina.home}/shared/classes,${catalina.home}/shared/*.jar
|
||||
|
||||
# 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. Scan specific lists (to exclude JARs
|
||||
# from individual scans) follow this. The list must be a comma separated list of
|
||||
# JAR file names.
|
||||
# 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.DefaultJarScanner.jarsToSkip=\
|
||||
bootstrap.jar,commons-daemon.jar,tomcat-juli.jar,\
|
||||
annotations-api.jar,el-api.jar,jsp-api.jar,servlet-api.jar,websocket-api.jar,\
|
||||
catalina.jar,catalina-ant.jar,catalina-ha.jar,catalina-tribes.jar,\
|
||||
jasper.jar,jasper-el.jar,ecj-*.jar,\
|
||||
tomcat-api.jar,tomcat-util.jar,tomcat-coyote.jar,tomcat-dbcp.jar,\
|
||||
tomcat-jni.jar,tomcat-spdy.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,\
|
||||
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,log4j-1*.jar,mail*.jar,slf4j*.jar,\
|
||||
xercesImpl.jar,xmlParserAPIs.jar,xml-apis.jar,\
|
||||
junit.jar,junit-*.jar,hamcrest*.jar,org.hamcrest*.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
|
||||
|
||||
# Additional JARs (over and above the default JARs listed above) to skip when
|
||||
# scanning for Servlet 3.0 pluggability features. These features include web
|
||||
# fragments, annotations, SCIs and classes that match @HandlesTypes. The list
|
||||
# must be a comma separated list of JAR file names.
|
||||
org.apache.catalina.startup.ContextConfig.jarsToSkip=
|
||||
|
||||
# Additional JARs (over and above the default JARs listed above) to skip when
|
||||
# scanning for TLDs. The list must be a comma separated list of JAR file names.
|
||||
org.apache.catalina.startup.TldConfig.jarsToSkip=tomcat7-websocket.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
|
35
tomcat-instance/files/context.xml
Normal file
35
tomcat-instance/files/context.xml
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?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 -->
|
||||
<WatchedResource>WEB-INF/web.xml</WatchedResource>
|
||||
|
||||
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
|
||||
<!--
|
||||
<Manager pathname="" />
|
||||
-->
|
||||
|
||||
<!-- Uncomment this to enable Comet connection tacking (provides events
|
||||
on session expiration as well as webapp lifecycle) -->
|
||||
<!--
|
||||
<Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
|
||||
-->
|
||||
|
||||
</Context>
|
49
tomcat-instance/files/logging.properties
Normal file
49
tomcat-instance/files/logging.properties
Normal file
|
@ -0,0 +1,49 @@
|
|||
# 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.FileHandler, 2localhost.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
|
||||
|
||||
.handlers = 1catalina.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
|
||||
|
||||
############################################################
|
||||
# Handler specific properties.
|
||||
# Describes specific configuration info for Handlers.
|
||||
############################################################
|
||||
|
||||
1catalina.org.apache.juli.FileHandler.level = FINE
|
||||
1catalina.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
|
||||
1catalina.org.apache.juli.FileHandler.prefix = catalina.
|
||||
|
||||
2localhost.org.apache.juli.FileHandler.level = FINE
|
||||
2localhost.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
|
||||
2localhost.org.apache.juli.FileHandler.prefix = localhost.
|
||||
|
||||
java.util.logging.ConsoleHandler.level = FINE
|
||||
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
|
||||
|
||||
############################################################
|
||||
# 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.FileHandler
|
||||
|
||||
# For example, set the com.xyz.foo logger to only log SEVERE
|
||||
# messages:
|
||||
#org.apache.catalina.startup.ContextConfig.level = FINE
|
||||
#org.apache.catalina.startup.HostConfig.level = FINE
|
||||
#org.apache.catalina.session.ManagerBase.level = FINE
|
||||
#org.apache.catalina.core.AprLifecycleListener.level=FINE
|
36
tomcat-instance/files/tomcat-users.xml
Normal file
36
tomcat-instance/files/tomcat-users.xml
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?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>
|
||||
<!--
|
||||
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.
|
||||
-->
|
||||
<!--
|
||||
NOTE: The sample user and role entries below are wrapped in a comment
|
||||
and thus are ignored when reading this file. Do not forget to remove
|
||||
<!.. ..> that surrounds them.
|
||||
-->
|
||||
<!--
|
||||
<role rolename="tomcat"/>
|
||||
<role rolename="role1"/>
|
||||
<user username="tomcat" password="tomcat" roles="tomcat"/>
|
||||
<user username="both" password="tomcat" roles="tomcat,role1"/>
|
||||
<user username="role1" password="tomcat" roles="role1"/>
|
||||
-->
|
||||
</tomcat-users>
|
4617
tomcat-instance/files/web.xml
Normal file
4617
tomcat-instance/files/web.xml
Normal file
|
@ -0,0 +1,4617 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!--
|
||||
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://java.sun.com/xml/ns/javaee"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
||||
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
|
||||
version="3.0">
|
||||
|
||||
<!-- ======================== 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. [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.6] -->
|
||||
<!-- -->
|
||||
<!-- compilerTargetVM Compiler target VM. [1.6] -->
|
||||
<!-- -->
|
||||
<!-- 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] -->
|
||||
|
||||
<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. -->
|
||||
<!-- [WEB-INF/cgi] -->
|
||||
<!-- -->
|
||||
<!-- debug Debugging detail level for messages logged -->
|
||||
<!-- by this servlet. [0] -->
|
||||
<!-- -->
|
||||
<!-- executable Name of the executable used to run the -->
|
||||
<!-- script. [perl] -->
|
||||
<!-- -->
|
||||
<!-- 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>debug</param-name>
|
||||
<param-value>0</param-value>
|
||||
</init-param>
|
||||
<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 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 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. -->
|
||||
|
||||
<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>
|
||||
<mime-mapping>
|
||||
<extension>dic</extension>
|
||||
<mime-type>text/x-c</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dir</extension>
|
||||
<mime-type>application/x-director</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dis</extension>
|
||||
<mime-type>application/vnd.mobius.dis</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dist</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>distz</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>djv</extension>
|
||||
<mime-type>image/vnd.djvu</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>djvu</extension>
|
||||
<mime-type>image/vnd.djvu</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dll</extension>
|
||||
<mime-type>application/x-msdownload</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dmg</extension>
|
||||
<mime-type>application/x-apple-diskimage</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dmp</extension>
|
||||
<mime-type>application/vnd.tcpdump.pcap</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dms</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dna</extension>
|
||||
<mime-type>application/vnd.dna</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>doc</extension>
|
||||
<mime-type>application/msword</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>docm</extension>
|
||||
<mime-type>application/vnd.ms-word.document.macroenabled.12</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>docx</extension>
|
||||
<mime-type>application/vnd.openxmlformats-officedocument.wordprocessingml.document</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dot</extension>
|
||||
<mime-type>application/msword</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dotm</extension>
|
||||
<mime-type>application/vnd.ms-word.template.macroenabled.12</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dotx</extension>
|
||||
<mime-type>application/vnd.openxmlformats-officedocument.wordprocessingml.template</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dp</extension>
|
||||
<mime-type>application/vnd.osgi.dp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dpg</extension>
|
||||
<mime-type>application/vnd.dpgraph</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dra</extension>
|
||||
<mime-type>audio/vnd.dra</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dsc</extension>
|
||||
<mime-type>text/prs.lines.tag</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dssc</extension>
|
||||
<mime-type>application/dssc+der</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dtb</extension>
|
||||
<mime-type>application/x-dtbook+xml</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dtd</extension>
|
||||
<mime-type>application/xml-dtd</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dts</extension>
|
||||
<mime-type>audio/vnd.dts</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dtshd</extension>
|
||||
<mime-type>audio/vnd.dts.hd</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dump</extension>
|
||||
<mime-type>application/octet-stream</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dv</extension>
|
||||
<mime-type>video/x-dv</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dvb</extension>
|
||||
<mime-type>video/vnd.dvb.file</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dvi</extension>
|
||||
<mime-type>application/x-dvi</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dwf</extension>
|
||||
<mime-type>model/vnd.dwf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dwg</extension>
|
||||
<mime-type>image/vnd.dwg</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dxf</extension>
|
||||
<mime-type>image/vnd.dxf</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
<extension>dxp</extension>
|
||||
<mime-type>application/vnd.spotfire.dxp</mime-type>
|
||||
</mime-mapping>
|
||||
<mime-mapping>
|
||||
|