Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
| 2 | <!-- |
||
| 3 | Licensed to the Apache Software Foundation (ASF) under one or more |
||
| 4 | contributor license agreements. See the NOTICE file distributed with |
||
| 5 | this work for additional information regarding copyright ownership. |
||
| 6 | The ASF licenses this file to You under the Apache License, Version 2.0 |
||
| 7 | (the "License"); you may not use this file except in compliance with |
||
| 8 | the License. You may obtain a copy of the License at |
||
| 9 | |||
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
||
| 11 | |||
| 12 | Unless required by applicable law or agreed to in writing, software |
||
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
||
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||
| 15 | See the License for the specific language governing permissions and |
||
| 16 | limitations under the License. |
||
| 17 | --> |
||
| 18 | <web-app xmlns="http://java.sun.com/xml/ns/javaee" |
||
| 19 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||
| 20 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
||
| 21 | version="2.5"> |
||
| 22 | |||
| 23 | <!-- ======================== Introduction ============================== --> |
||
| 24 | <!-- This document defines default values for *all* web applications --> |
||
| 25 | <!-- loaded into this instance of Tomcat. As each application is --> |
||
| 26 | <!-- deployed, this file is processed, followed by the --> |
||
| 27 | <!-- "/WEB-INF/web.xml" deployment descriptor from your own --> |
||
| 28 | <!-- applications. --> |
||
| 29 | <!-- --> |
||
| 30 | <!-- WARNING: Do not configure application-specific resources here! --> |
||
| 31 | <!-- They should go in the "/WEB-INF/web.xml" file in your application. --> |
||
| 32 | |||
| 33 | |||
| 34 | <!-- ================== Built In Servlet Definitions ==================== --> |
||
| 35 | |||
| 36 | |||
| 37 | <!-- The default servlet for all web applications, that serves static --> |
||
| 38 | <!-- resources. It processes all requests that are not mapped to other --> |
||
| 39 | <!-- servlets with servlet mappings (defined either here or in your own --> |
||
| 40 | <!-- web.xml file. This servlet supports the following initialization --> |
||
| 41 | <!-- parameters (default values are in square brackets): --> |
||
| 42 | <!-- --> |
||
| 43 | <!-- debug Debugging detail level for messages logged --> |
||
| 44 | <!-- by this servlet. [0] --> |
||
| 45 | <!-- --> |
||
| 46 | <!-- fileEncoding Encoding to be used to read static resources --> |
||
| 47 | <!-- [platform default] --> |
||
| 48 | <!-- --> |
||
| 49 | <!-- input Input buffer size (in bytes) when reading --> |
||
| 50 | <!-- resources to be served. [2048] --> |
||
| 51 | <!-- --> |
||
| 52 | <!-- listings Should directory listings be produced if there --> |
||
| 53 | <!-- is no welcome file in this directory? [false] --> |
||
| 54 | <!-- WARNING: Listings for directories with many --> |
||
| 55 | <!-- entries can be slow and may consume --> |
||
| 56 | <!-- significant proportions of server resources. --> |
||
| 57 | <!-- --> |
||
| 58 | <!-- output Output buffer size (in bytes) when writing --> |
||
| 59 | <!-- resources to be served. [2048] --> |
||
| 60 | <!-- --> |
||
| 61 | <!-- readonly Is this context "read only", so HTTP --> |
||
| 62 | <!-- commands like PUT and DELETE are --> |
||
| 63 | <!-- rejected? [true] --> |
||
| 64 | <!-- --> |
||
| 65 | <!-- readmeFile File name to display with the directory --> |
||
| 66 | <!-- contents. [null] --> |
||
| 67 | <!-- --> |
||
| 68 | <!-- sendfileSize If the connector used supports sendfile, this --> |
||
| 69 | <!-- represents the minimal file size in KB for --> |
||
| 70 | <!-- which sendfile will be used. Use a negative --> |
||
| 71 | <!-- value to always disable sendfile. [48] --> |
||
| 72 | <!-- --> |
||
| 73 | <!-- For directory listing customization. Checks localXsltFile, then --> |
||
| 74 | <!-- globalXsltFile, then defaults to original behavior. --> |
||
| 75 | <!-- --> |
||
| 76 | <!-- localXsltFile Make directory listings an XML doc and --> |
||
| 77 | <!-- pass the result to this style sheet residing --> |
||
| 78 | <!-- in that directory. This overrides --> |
||
| 79 | <!-- globalXsltFile[null] --> |
||
| 80 | <!-- --> |
||
| 81 | <!-- globalXsltFile Site wide configuration version of --> |
||
| 82 | <!-- localXsltFile This argument is expected --> |
||
| 83 | <!-- to be a physical file. [null] --> |
||
| 84 | <!-- --> |
||
| 85 | <!-- --> |
||
| 86 | |||
| 87 | <servlet> |
||
| 88 | <servlet-name>default</servlet-name> |
||
| 89 | <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class> |
||
| 90 | <init-param> |
||
| 91 | <param-name>debug</param-name> |
||
| 92 | <param-value>0</param-value> |
||
| 93 | </init-param> |
||
| 94 | <init-param> |
||
| 95 | <param-name>listings</param-name> |
||
| 96 | <param-value>false</param-value> |
||
| 97 | </init-param> |
||
| 98 | <load-on-startup>1</load-on-startup> |
||
| 99 | </servlet> |
||
| 100 | |||
| 101 | |||
| 102 | <!-- The "invoker" servlet, which executes anonymous servlet classes --> |
||
| 103 | <!-- that have not been defined in a web.xml file. Traditionally, this --> |
||
| 104 | <!-- servlet is mapped to the URL pattern "/servlet/*", but you can map --> |
||
| 105 | <!-- it to other patterns as well. The extra path info portion of such a --> |
||
| 106 | <!-- request must be the fully qualified class name of a Java class that --> |
||
| 107 | <!-- implements Servlet (or extends HttpServlet), or the servlet name --> |
||
| 108 | <!-- of an existing servlet definition. This servlet supports the --> |
||
| 109 | <!-- following initialization parameters (default values are in square --> |
||
| 110 | <!-- brackets): --> |
||
| 111 | <!-- --> |
||
| 112 | <!-- debug Debugging detail level for messages logged --> |
||
| 113 | <!-- by this servlet. [0] --> |
||
| 114 | |||
| 115 | <!-- |
||
| 116 | <servlet> |
||
| 117 | <servlet-name>invoker</servlet-name> |
||
| 118 | <servlet-class> |
||
| 119 | org.apache.catalina.servlets.InvokerServlet |
||
| 120 | </servlet-class> |
||
| 121 | <init-param> |
||
| 122 | <param-name>debug</param-name> |
||
| 123 | <param-value>0</param-value> |
||
| 124 | </init-param> |
||
| 125 | <load-on-startup>2</load-on-startup> |
||
| 126 | </servlet> |
||
| 127 | --> |
||
| 128 | |||
| 129 | |||
| 130 | <!-- The JSP page compiler and execution servlet, which is the mechanism --> |
||
| 131 | <!-- used by Tomcat to support JSP pages. Traditionally, this servlet --> |
||
| 132 | <!-- is mapped to the URL pattern "*.jsp". This servlet supports the --> |
||
| 133 | <!-- following initialization parameters (default values are in square --> |
||
| 134 | <!-- brackets): --> |
||
| 135 | <!-- --> |
||
| 136 | <!-- checkInterval If development is false and checkInterval is --> |
||
| 137 | <!-- greater than zero, background compilations are --> |
||
| 138 | <!-- enabled. checkInterval is the time in seconds --> |
||
| 139 | <!-- between checks to see if a JSP page (and its --> |
||
| 140 | <!-- dependent files) needs to be recompiled. [0] --> |
||
| 141 | <!-- --> |
||
| 142 | <!-- classdebuginfo Should the class file be compiled with --> |
||
| 143 | <!-- debugging information? [true] --> |
||
| 144 | <!-- --> |
||
| 145 | <!-- classpath What class path should I use while compiling --> |
||
| 146 | <!-- generated servlets? [Created dynamically --> |
||
| 147 | <!-- based on the current web application] --> |
||
| 148 | <!-- --> |
||
| 149 | <!-- compiler Which compiler Ant should use to compile JSP --> |
||
| 150 | <!-- pages. See the jasper documentation for more --> |
||
| 151 | <!-- information. --> |
||
| 152 | <!-- --> |
||
| 153 | <!-- compilerSourceVM Compiler source VM --> |
||
| 154 | <!-- default is System.properties --> |
||
| 155 | <!-- java.specification.version > 1.4 --> |
||
| 156 | <!-- [1.5] else [1.4] --> |
||
| 157 | <!-- --> |
||
| 158 | <!-- compilerTargetVM Compiler target VM --> |
||
| 159 | <!-- default is System.properties --> |
||
| 160 | <!-- java.specification.version > 1.4 --> |
||
| 161 | <!-- [1.5] else [1.4] --> |
||
| 162 | <!-- --> |
||
| 163 | <!-- development Is Jasper used in development mode? If true, --> |
||
| 164 | <!-- the frequency at which JSPs are checked for --> |
||
| 165 | <!-- modification may be specified via the --> |
||
| 166 | <!-- modificationTestInterval parameter. [true] --> |
||
| 167 | <!-- --> |
||
| 168 | <!-- displaySourceFragment --> |
||
| 169 | <!-- Should a source fragment be included in --> |
||
| 170 | <!-- exception messages? [true] --> |
||
| 171 | <!-- --> |
||
| 172 | <!-- dumpSmap Should the SMAP info for JSR45 debugging be --> |
||
| 173 | <!-- dumped to a file? [false] --> |
||
| 174 | <!-- False if suppressSmap is true --> |
||
| 175 | <!-- --> |
||
| 176 | <!-- enablePooling Determines whether tag handler pooling is --> |
||
| 177 | <!-- enabled [true] --> |
||
| 178 | <!-- --> |
||
| 179 | <!-- engineOptionsClass Allows specifying the Options class used to --> |
||
| 180 | <!-- configure Jasper. If not present, the default --> |
||
| 181 | <!-- EmbeddedServletOptions will be used. --> |
||
| 182 | <!-- --> |
||
| 183 | <!-- errorOnUseBeanInvalidClassAttribute --> |
||
| 184 | <!-- Should Jasper issue an error when the value of --> |
||
| 185 | <!-- the class attribute in an useBean action is --> |
||
| 186 | <!-- not a valid bean class? [true] --> |
||
| 187 | <!-- --> |
||
| 188 | <!-- fork Tell Ant to fork compiles of JSP pages so that --> |
||
| 189 | <!-- a separate JVM is used for JSP page compiles --> |
||
| 190 | <!-- from the one Tomcat is running in. [true] --> |
||
| 191 | <!-- --> |
||
| 192 | <!-- genStrAsCharArray Should text strings be generated as char --> |
||
| 193 | <!-- arrays, to improve performance in some cases? --> |
||
| 194 | <!-- [false] --> |
||
| 195 | <!-- --> |
||
| 196 | <!-- ieClassId The class-id value to be sent to Internet --> |
||
| 197 | <!-- Explorer when using <jsp:plugin> tags. --> |
||
| 198 | <!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] --> |
||
| 199 | <!-- --> |
||
| 200 | <!-- javaEncoding Java file encoding to use for generating java --> |
||
| 201 | <!-- source files. [UTF8] --> |
||
| 202 | <!-- --> |
||
| 203 | <!-- keepgenerated Should we keep the generated Java source code --> |
||
| 204 | <!-- for each page instead of deleting it? [true] --> |
||
| 205 | <!-- --> |
||
| 206 | <!-- mappedfile Should we generate static content with one --> |
||
| 207 | <!-- print statement per input line, to ease --> |
||
| 208 | <!-- debugging? [true] --> |
||
| 209 | <!-- --> |
||
| 210 | <!-- modificationTestInterval --> |
||
| 211 | <!-- Causes a JSP (and its dependent files) to not --> |
||
| 212 | <!-- be checked for modification during the --> |
||
| 213 | <!-- specified time interval (in seconds) from the --> |
||
| 214 | <!-- last time the JSP was checked for --> |
||
| 215 | <!-- modification. A value of 0 will cause the JSP --> |
||
| 216 | <!-- to be checked on every access. --> |
||
| 217 | <!-- Used in development mode only. [4] --> |
||
| 218 | <!-- --> |
||
| 219 | <!-- scratchdir What scratch directory should we use when --> |
||
| 220 | <!-- compiling JSP pages? [default work directory --> |
||
| 221 | <!-- for the current web application] --> |
||
| 222 | <!-- --> |
||
| 223 | <!-- suppressSmap Should the generation of SMAP info for JSR45 --> |
||
| 224 | <!-- debugging be suppressed? [false] --> |
||
| 225 | <!-- --> |
||
| 226 | <!-- trimSpaces Should white spaces in template text between --> |
||
| 227 | <!-- actions or directives be trimmed? [false] --> |
||
| 228 | <!-- --> |
||
| 229 | <!-- xpoweredBy Determines whether X-Powered-By response --> |
||
| 230 | <!-- header is added by generated servlet [false] --> |
||
| 231 | <!-- --> |
||
| 232 | <!-- If you wish to use Jikes to compile JSP pages: --> |
||
| 233 | <!-- Please see the "Using Jikes" section of the Jasper-HowTo --> |
||
| 234 | <!-- page in the Tomcat documentation. --> |
||
| 235 | |||
| 236 | <servlet> |
||
| 237 | <servlet-name>jsp</servlet-name> |
||
| 238 | <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class> |
||
| 239 | <init-param> |
||
| 240 | <param-name>fork</param-name> |
||
| 241 | <param-value>false</param-value> |
||
| 242 | </init-param> |
||
| 243 | <init-param> |
||
| 244 | <param-name>xpoweredBy</param-name> |
||
| 245 | <param-value>false</param-value> |
||
| 246 | </init-param> |
||
| 247 | <load-on-startup>3</load-on-startup> |
||
| 248 | </servlet> |
||
| 249 | |||
| 250 | |||
| 251 | <!-- NOTE: An SSI Filter is also available as an alternative SSI --> |
||
| 252 | <!-- implementation. Use either the Servlet or the Filter but NOT both. --> |
||
| 253 | <!-- --> |
||
| 254 | <!-- Server Side Includes processing servlet, which processes SSI --> |
||
| 255 | <!-- directives in HTML pages consistent with similar support in web --> |
||
| 256 | <!-- servers like Apache. Traditionally, this servlet is mapped to the --> |
||
| 257 | <!-- URL pattern "*.shtml". This servlet supports the following --> |
||
| 258 | <!-- initialization parameters (default values are in square brackets): --> |
||
| 259 | <!-- --> |
||
| 260 | <!-- buffered Should output from this servlet be buffered? --> |
||
| 261 | <!-- (0=false, 1=true) [0] --> |
||
| 262 | <!-- --> |
||
| 263 | <!-- debug Debugging detail level for messages logged --> |
||
| 264 | <!-- by this servlet. [0] --> |
||
| 265 | <!-- --> |
||
| 266 | <!-- expires The number of seconds before a page with SSI --> |
||
| 267 | <!-- directives will expire. [No default] --> |
||
| 268 | <!-- --> |
||
| 269 | <!-- isVirtualWebappRelative --> |
||
| 270 | <!-- Should "virtual" paths be interpreted as --> |
||
| 271 | <!-- relative to the context root, instead of --> |
||
| 272 | <!-- the server root? (0=false, 1=true) [0] --> |
||
| 273 | <!-- --> |
||
| 274 | <!-- inputEncoding The encoding to assume for SSI resources if --> |
||
| 275 | <!-- one is not available from the resource. --> |
||
| 276 | <!-- [Platform default] --> |
||
| 277 | <!-- --> |
||
| 278 | <!-- outputEncoding The encoding to use for the page that results --> |
||
| 279 | <!-- from the SSI processing. [UTF-8] --> |
||
| 280 | <!-- --> |
||
| 281 | <!-- --> |
||
| 282 | <!-- IMPORTANT: To use the SSI servlet, you also need to rename the --> |
||
| 283 | <!-- $CATALINA_HOME/server/lib/servlets-ssi.renametojar file --> |
||
| 284 | <!-- to $CATALINA_HOME/server/lib/servlets-ssi.jar --> |
||
| 285 | |||
| 286 | <!-- |
||
| 287 | <servlet> |
||
| 288 | <servlet-name>ssi</servlet-name> |
||
| 289 | <servlet-class> |
||
| 290 | org.apache.catalina.ssi.SSIServlet |
||
| 291 | </servlet-class> |
||
| 292 | <init-param> |
||
| 293 | <param-name>buffered</param-name> |
||
| 294 | <param-value>1</param-value> |
||
| 295 | </init-param> |
||
| 296 | <init-param> |
||
| 297 | <param-name>debug</param-name> |
||
| 298 | <param-value>0</param-value> |
||
| 299 | </init-param> |
||
| 300 | <init-param> |
||
| 301 | <param-name>expires</param-name> |
||
| 302 | <param-value>666</param-value> |
||
| 303 | </init-param> |
||
| 304 | <init-param> |
||
| 305 | <param-name>isVirtualWebappRelative</param-name> |
||
| 306 | <param-value>0</param-value> |
||
| 307 | </init-param> |
||
| 308 | <load-on-startup>4</load-on-startup> |
||
| 309 | </servlet> |
||
| 310 | --> |
||
| 311 | |||
| 312 | |||
| 313 | <!-- Common Gateway Includes (CGI) processing servlet, which supports --> |
||
| 314 | <!-- execution of external applications that conform to the CGI spec --> |
||
| 315 | <!-- requirements. Typically, this servlet is mapped to the URL pattern --> |
||
| 316 | <!-- "/cgi-bin/*", which means that any CGI applications that are --> |
||
| 317 | <!-- executed must be present within the web application. This servlet --> |
||
| 318 | <!-- supports the following initialization parameters (default values --> |
||
| 319 | <!-- are in square brackets): --> |
||
| 320 | <!-- --> |
||
| 321 | <!-- cgiPathPrefix The CGI search path will start at --> |
||
| 322 | <!-- webAppRootDir + File.separator + this prefix. --> |
||
| 323 | <!-- [WEB-INF/cgi] --> |
||
| 324 | <!-- --> |
||
| 325 | <!-- debug Debugging detail level for messages logged --> |
||
| 326 | <!-- by this servlet. [0] --> |
||
| 327 | <!-- --> |
||
| 328 | <!-- executable Name of the exectuable used to run the --> |
||
| 329 | <!-- script. [perl] --> |
||
| 330 | <!-- --> |
||
| 331 | <!-- parameterEncoding Name of parameter encoding to be used with --> |
||
| 332 | <!-- CGI servlet. --> |
||
| 333 | <!-- [System.getProperty("file.encoding","UTF-8")] --> |
||
| 334 | <!-- --> |
||
| 335 | <!-- passShellEnvironment Should the shell environment variables (if --> |
||
| 336 | <!-- any) be passed to the CGI script? [false] --> |
||
| 337 | <!-- --> |
||
| 338 | <!-- IMPORTANT: To use the CGI servlet, you also need to rename the --> |
||
| 339 | <!-- $CATALINA_HOME/server/lib/servlets-cgi.renametojar file --> |
||
| 340 | <!-- to $CATALINA_HOME/server/lib/servlets-cgi.jar --> |
||
| 341 | |||
| 342 | <!-- |
||
| 343 | <servlet> |
||
| 344 | <servlet-name>cgi</servlet-name> |
||
| 345 | <servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class> |
||
| 346 | <init-param> |
||
| 347 | <param-name>debug</param-name> |
||
| 348 | <param-value>0</param-value> |
||
| 349 | </init-param> |
||
| 350 | <init-param> |
||
| 351 | <param-name>cgiPathPrefix</param-name> |
||
| 352 | <param-value>WEB-INF/cgi</param-value> |
||
| 353 | </init-param> |
||
| 354 | <load-on-startup>5</load-on-startup> |
||
| 355 | </servlet> |
||
| 356 | --> |
||
| 357 | |||
| 358 | |||
| 359 | <!-- ================ Built In Servlet Mappings ========================= --> |
||
| 360 | |||
| 361 | |||
| 362 | <!-- The servlet mappings for the built in servlets defined above. Note --> |
||
| 363 | <!-- that, by default, the CGI and SSI servlets are *not* mapped. You --> |
||
| 364 | <!-- must uncomment these mappings (or add them to your application's own --> |
||
| 365 | <!-- web.xml deployment descriptor) to enable these services --> |
||
| 366 | |||
| 367 | <!-- The mapping for the default servlet --> |
||
| 368 | <servlet-mapping> |
||
| 369 | <servlet-name>default</servlet-name> |
||
| 370 | <url-pattern>/</url-pattern> |
||
| 371 | </servlet-mapping> |
||
| 372 | |||
| 373 | <!-- The mapping for the invoker servlet --> |
||
| 374 | <!-- |
||
| 375 | <servlet-mapping> |
||
| 376 | <servlet-name>invoker</servlet-name> |
||
| 377 | <url-pattern>/servlet/*</url-pattern> |
||
| 378 | </servlet-mapping> |
||
| 379 | --> |
||
| 380 | |||
| 381 | <!-- The mapping for the JSP servlet --> |
||
| 382 | <servlet-mapping> |
||
| 383 | <servlet-name>jsp</servlet-name> |
||
| 384 | <url-pattern>*.jsp</url-pattern> |
||
| 385 | </servlet-mapping> |
||
| 386 | |||
| 387 | <servlet-mapping> |
||
| 388 | <servlet-name>jsp</servlet-name> |
||
| 389 | <url-pattern>*.jspx</url-pattern> |
||
| 390 | </servlet-mapping> |
||
| 391 | |||
| 392 | <!-- The mapping for the SSI servlet --> |
||
| 393 | <!-- |
||
| 394 | <servlet-mapping> |
||
| 395 | <servlet-name>ssi</servlet-name> |
||
| 396 | <url-pattern>*.shtml</url-pattern> |
||
| 397 | </servlet-mapping> |
||
| 398 | --> |
||
| 399 | |||
| 400 | <!-- The mapping for the CGI Gateway servlet --> |
||
| 401 | |||
| 402 | <!-- |
||
| 403 | <servlet-mapping> |
||
| 404 | <servlet-name>cgi</servlet-name> |
||
| 405 | <url-pattern>/cgi-bin/*</url-pattern> |
||
| 406 | </servlet-mapping> |
||
| 407 | --> |
||
| 408 | |||
| 409 | |||
| 410 | <!-- ================== Built In Filter Definitions ===================== --> |
||
| 411 | |||
| 412 | <!-- NOTE: An SSI Servlet is also available as an alternative SSI --> |
||
| 413 | <!-- implementation. Use either the Servlet or the Filter but NOT both. --> |
||
| 414 | <!-- --> |
||
| 415 | <!-- Server Side Includes processing filter, which processes SSI --> |
||
| 416 | <!-- directives in HTML pages consistent with similar support in web --> |
||
| 417 | <!-- servers like Apache. Traditionally, this filter is mapped to the --> |
||
| 418 | <!-- URL pattern "*.shtml", though it can be mapped to "*" as it will --> |
||
| 419 | <!-- selectively enable/disable SSI processing based on mime types. For --> |
||
| 420 | <!-- this to work you will need to uncomment the .shtml mime type --> |
||
| 421 | <!-- definition towards the bottom of this file. --> |
||
| 422 | <!-- The contentType init param allows you to apply SSI processing to JSP --> |
||
| 423 | <!-- pages, javascript, or any other content you wish. This filter --> |
||
| 424 | <!-- supports the following initialization parameters (default values are --> |
||
| 425 | <!-- in square brackets): --> |
||
| 426 | <!-- --> |
||
| 427 | <!-- contentType A regex pattern that must be matched before --> |
||
| 428 | <!-- SSI processing is applied. --> |
||
| 429 | <!-- [text/x-server-parsed-html(;.*)?] --> |
||
| 430 | <!-- --> |
||
| 431 | <!-- debug Debugging detail level for messages logged --> |
||
| 432 | <!-- by this servlet. [0] --> |
||
| 433 | <!-- --> |
||
| 434 | <!-- expires The number of seconds before a page with SSI --> |
||
| 435 | <!-- directives will expire. [No default] --> |
||
| 436 | <!-- --> |
||
| 437 | <!-- isVirtualWebappRelative --> |
||
| 438 | <!-- Should "virtual" paths be interpreted as --> |
||
| 439 | <!-- relative to the context root, instead of --> |
||
| 440 | <!-- the server root? (0=false, 1=true) [0] --> |
||
| 441 | <!-- --> |
||
| 442 | <!-- --> |
||
| 443 | <!-- IMPORTANT: To use the SSI filter, you also need to rename the --> |
||
| 444 | <!-- $CATALINA_HOME/server/lib/servlets-ssi.renametojar file --> |
||
| 445 | <!-- to $CATALINA_HOME/server/lib/servlets-ssi.jar --> |
||
| 446 | |||
| 447 | <!-- |
||
| 448 | <filter> |
||
| 449 | <filter-name>ssi</filter-name> |
||
| 450 | <filter-class> |
||
| 451 | org.apache.catalina.ssi.SSIFilter |
||
| 452 | </filter-class> |
||
| 453 | <init-param> |
||
| 454 | <param-name>contentType</param-name> |
||
| 455 | <param-value>text/x-server-parsed-html(;.*)?</param-value> |
||
| 456 | </init-param> |
||
| 457 | <init-param> |
||
| 458 | <param-name>debug</param-name> |
||
| 459 | <param-value>0</param-value> |
||
| 460 | </init-param> |
||
| 461 | <init-param> |
||
| 462 | <param-name>expires</param-name> |
||
| 463 | <param-value>666</param-value> |
||
| 464 | </init-param> |
||
| 465 | <init-param> |
||
| 466 | <param-name>isVirtualWebappRelative</param-name> |
||
| 467 | <param-value>0</param-value> |
||
| 468 | </init-param> |
||
| 469 | </filter> |
||
| 470 | --> |
||
| 471 | |||
| 472 | |||
| 473 | <!-- ==================== Built In Filter Mappings ====================== --> |
||
| 474 | |||
| 475 | <!-- The mapping for the SSI Filter --> |
||
| 476 | <!-- |
||
| 477 | <filter-mapping> |
||
| 478 | <filter-name>ssi</filter-name> |
||
| 479 | <url-pattern>*.shtml</url-pattern> |
||
| 480 | </filter-mapping> |
||
| 481 | --> |
||
| 482 | |||
| 483 | |||
| 484 | <!-- ==================== Default Session Configuration ================= --> |
||
| 485 | <!-- You can set the default session timeout (in minutes) for all newly --> |
||
| 486 | <!-- created sessions by modifying the value below. --> |
||
| 487 | |||
| 488 | <session-config> |
||
| 489 | <session-timeout>30</session-timeout> |
||
| 490 | </session-config> |
||
| 491 | |||
| 492 | |||
| 493 | <!-- ===================== Default MIME Type Mappings =================== --> |
||
| 494 | <!-- When serving static resources, Tomcat will automatically generate --> |
||
| 495 | <!-- a "Content-Type" header based on the resource's filename extension, --> |
||
| 496 | <!-- based on these mappings. Additional mappings can be added here (to --> |
||
| 497 | <!-- apply to all web applications), or in your own application's web.xml --> |
||
| 498 | <!-- deployment descriptor. --> |
||
| 499 | |||
| 500 | <mime-mapping> |
||
| 501 | <extension>abs</extension> |
||
| 502 | <mime-type>audio/x-mpeg</mime-type> |
||
| 503 | </mime-mapping> |
||
| 504 | <mime-mapping> |
||
| 505 | <extension>ai</extension> |
||
| 506 | <mime-type>application/postscript</mime-type> |
||
| 507 | </mime-mapping> |
||
| 508 | <mime-mapping> |
||
| 509 | <extension>aif</extension> |
||
| 510 | <mime-type>audio/x-aiff</mime-type> |
||
| 511 | </mime-mapping> |
||
| 512 | <mime-mapping> |
||
| 513 | <extension>aifc</extension> |
||
| 514 | <mime-type>audio/x-aiff</mime-type> |
||
| 515 | </mime-mapping> |
||
| 516 | <mime-mapping> |
||
| 517 | <extension>aiff</extension> |
||
| 518 | <mime-type>audio/x-aiff</mime-type> |
||
| 519 | </mime-mapping> |
||
| 520 | <mime-mapping> |
||
| 521 | <extension>aim</extension> |
||
| 522 | <mime-type>application/x-aim</mime-type> |
||
| 523 | </mime-mapping> |
||
| 524 | <mime-mapping> |
||
| 525 | <extension>art</extension> |
||
| 526 | <mime-type>image/x-jg</mime-type> |
||
| 527 | </mime-mapping> |
||
| 528 | <mime-mapping> |
||
| 529 | <extension>asf</extension> |
||
| 530 | <mime-type>video/x-ms-asf</mime-type> |
||
| 531 | </mime-mapping> |
||
| 532 | <mime-mapping> |
||
| 533 | <extension>asx</extension> |
||
| 534 | <mime-type>video/x-ms-asf</mime-type> |
||
| 535 | </mime-mapping> |
||
| 536 | <mime-mapping> |
||
| 537 | <extension>au</extension> |
||
| 538 | <mime-type>audio/basic</mime-type> |
||
| 539 | </mime-mapping> |
||
| 540 | <mime-mapping> |
||
| 541 | <extension>avi</extension> |
||
| 542 | <mime-type>video/x-msvideo</mime-type> |
||
| 543 | </mime-mapping> |
||
| 544 | <mime-mapping> |
||
| 545 | <extension>avx</extension> |
||
| 546 | <mime-type>video/x-rad-screenplay</mime-type> |
||
| 547 | </mime-mapping> |
||
| 548 | <mime-mapping> |
||
| 549 | <extension>bcpio</extension> |
||
| 550 | <mime-type>application/x-bcpio</mime-type> |
||
| 551 | </mime-mapping> |
||
| 552 | <mime-mapping> |
||
| 553 | <extension>bin</extension> |
||
| 554 | <mime-type>application/octet-stream</mime-type> |
||
| 555 | </mime-mapping> |
||
| 556 | <mime-mapping> |
||
| 557 | <extension>bmp</extension> |
||
| 558 | <mime-type>image/bmp</mime-type> |
||
| 559 | </mime-mapping> |
||
| 560 | <mime-mapping> |
||
| 561 | <extension>body</extension> |
||
| 562 | <mime-type>text/html</mime-type> |
||
| 563 | </mime-mapping> |
||
| 564 | <mime-mapping> |
||
| 565 | <extension>cdf</extension> |
||
| 566 | <mime-type>application/x-cdf</mime-type> |
||
| 567 | </mime-mapping> |
||
| 568 | <mime-mapping> |
||
| 569 | <extension>cer</extension> |
||
| 570 | <mime-type>application/x-x509-ca-cert</mime-type> |
||
| 571 | </mime-mapping> |
||
| 572 | <mime-mapping> |
||
| 573 | <extension>class</extension> |
||
| 574 | <mime-type>application/java</mime-type> |
||
| 575 | </mime-mapping> |
||
| 576 | <mime-mapping> |
||
| 577 | <extension>cpio</extension> |
||
| 578 | <mime-type>application/x-cpio</mime-type> |
||
| 579 | </mime-mapping> |
||
| 580 | <mime-mapping> |
||
| 581 | <extension>csh</extension> |
||
| 582 | <mime-type>application/x-csh</mime-type> |
||
| 583 | </mime-mapping> |
||
| 584 | <mime-mapping> |
||
| 585 | <extension>css</extension> |
||
| 586 | <mime-type>text/css</mime-type> |
||
| 587 | </mime-mapping> |
||
| 588 | <mime-mapping> |
||
| 589 | <extension>dib</extension> |
||
| 590 | <mime-type>image/bmp</mime-type> |
||
| 591 | </mime-mapping> |
||
| 592 | <mime-mapping> |
||
| 593 | <extension>doc</extension> |
||
| 594 | <mime-type>application/msword</mime-type> |
||
| 595 | </mime-mapping> |
||
| 596 | <mime-mapping> |
||
| 597 | <extension>dtd</extension> |
||
| 598 | <mime-type>application/xml-dtd</mime-type> |
||
| 599 | </mime-mapping> |
||
| 600 | <mime-mapping> |
||
| 601 | <extension>dv</extension> |
||
| 602 | <mime-type>video/x-dv</mime-type> |
||
| 603 | </mime-mapping> |
||
| 604 | <mime-mapping> |
||
| 605 | <extension>dvi</extension> |
||
| 606 | <mime-type>application/x-dvi</mime-type> |
||
| 607 | </mime-mapping> |
||
| 608 | <mime-mapping> |
||
| 609 | <extension>eps</extension> |
||
| 610 | <mime-type>application/postscript</mime-type> |
||
| 611 | </mime-mapping> |
||
| 612 | <mime-mapping> |
||
| 613 | <extension>etx</extension> |
||
| 614 | <mime-type>text/x-setext</mime-type> |
||
| 615 | </mime-mapping> |
||
| 616 | <mime-mapping> |
||
| 617 | <extension>exe</extension> |
||
| 618 | <mime-type>application/octet-stream</mime-type> |
||
| 619 | </mime-mapping> |
||
| 620 | <mime-mapping> |
||
| 621 | <extension>gif</extension> |
||
| 622 | <mime-type>image/gif</mime-type> |
||
| 623 | </mime-mapping> |
||
| 624 | <mime-mapping> |
||
| 625 | <extension>gtar</extension> |
||
| 626 | <mime-type>application/x-gtar</mime-type> |
||
| 627 | </mime-mapping> |
||
| 628 | <mime-mapping> |
||
| 629 | <extension>gz</extension> |
||
| 630 | <mime-type>application/x-gzip</mime-type> |
||
| 631 | </mime-mapping> |
||
| 632 | <mime-mapping> |
||
| 633 | <extension>hdf</extension> |
||
| 634 | <mime-type>application/x-hdf</mime-type> |
||
| 635 | </mime-mapping> |
||
| 636 | <mime-mapping> |
||
| 637 | <extension>hqx</extension> |
||
| 638 | <mime-type>application/mac-binhex40</mime-type> |
||
| 639 | </mime-mapping> |
||
| 640 | <mime-mapping> |
||
| 641 | <extension>htc</extension> |
||
| 642 | <mime-type>text/x-component</mime-type> |
||
| 643 | </mime-mapping> |
||
| 644 | <mime-mapping> |
||
| 645 | <extension>htm</extension> |
||
| 646 | <mime-type>text/html</mime-type> |
||
| 647 | </mime-mapping> |
||
| 648 | <mime-mapping> |
||
| 649 | <extension>html</extension> |
||
| 650 | <mime-type>text/html</mime-type> |
||
| 651 | </mime-mapping> |
||
| 652 | <mime-mapping> |
||
| 653 | <extension>hqx</extension> |
||
| 654 | <mime-type>application/mac-binhex40</mime-type> |
||
| 655 | </mime-mapping> |
||
| 656 | <mime-mapping> |
||
| 657 | <extension>ief</extension> |
||
| 658 | <mime-type>image/ief</mime-type> |
||
| 659 | </mime-mapping> |
||
| 660 | <mime-mapping> |
||
| 661 | <extension>jad</extension> |
||
| 662 | <mime-type>text/vnd.sun.j2me.app-descriptor</mime-type> |
||
| 663 | </mime-mapping> |
||
| 664 | <mime-mapping> |
||
| 665 | <extension>jar</extension> |
||
| 666 | <mime-type>application/java-archive</mime-type> |
||
| 667 | </mime-mapping> |
||
| 668 | <mime-mapping> |
||
| 669 | <extension>java</extension> |
||
| 670 | <mime-type>text/plain</mime-type> |
||
| 671 | </mime-mapping> |
||
| 672 | <mime-mapping> |
||
| 673 | <extension>jnlp</extension> |
||
| 674 | <mime-type>application/x-java-jnlp-file</mime-type> |
||
| 675 | </mime-mapping> |
||
| 676 | <mime-mapping> |
||
| 677 | <extension>jpe</extension> |
||
| 678 | <mime-type>image/jpeg</mime-type> |
||
| 679 | </mime-mapping> |
||
| 680 | <mime-mapping> |
||
| 681 | <extension>jpeg</extension> |
||
| 682 | <mime-type>image/jpeg</mime-type> |
||
| 683 | </mime-mapping> |
||
| 684 | <mime-mapping> |
||
| 685 | <extension>jpg</extension> |
||
| 686 | <mime-type>image/jpeg</mime-type> |
||
| 687 | </mime-mapping> |
||
| 688 | <mime-mapping> |
||
| 689 | <extension>js</extension> |
||
| 690 | <mime-type>text/javascript</mime-type> |
||
| 691 | </mime-mapping> |
||
| 692 | <mime-mapping> |
||
| 693 | <extension>jsf</extension> |
||
| 694 | <mime-type>text/plain</mime-type> |
||
| 695 | </mime-mapping> |
||
| 696 | <mime-mapping> |
||
| 697 | <extension>jspf</extension> |
||
| 698 | <mime-type>text/plain</mime-type> |
||
| 699 | </mime-mapping> |
||
| 700 | <mime-mapping> |
||
| 701 | <extension>kar</extension> |
||
| 702 | <mime-type>audio/x-midi</mime-type> |
||
| 703 | </mime-mapping> |
||
| 704 | <mime-mapping> |
||
| 705 | <extension>latex</extension> |
||
| 706 | <mime-type>application/x-latex</mime-type> |
||
| 707 | </mime-mapping> |
||
| 708 | <mime-mapping> |
||
| 709 | <extension>m3u</extension> |
||
| 710 | <mime-type>audio/x-mpegurl</mime-type> |
||
| 711 | </mime-mapping> |
||
| 712 | <mime-mapping> |
||
| 713 | <extension>mac</extension> |
||
| 714 | <mime-type>image/x-macpaint</mime-type> |
||
| 715 | </mime-mapping> |
||
| 716 | <mime-mapping> |
||
| 717 | <extension>man</extension> |
||
| 718 | <mime-type>application/x-troff-man</mime-type> |
||
| 719 | </mime-mapping> |
||
| 720 | <mime-mapping> |
||
| 721 | <extension>mathml</extension> |
||
| 722 | <mime-type>application/mathml+xml</mime-type> |
||
| 723 | </mime-mapping> |
||
| 724 | <mime-mapping> |
||
| 725 | <extension>me</extension> |
||
| 726 | <mime-type>application/x-troff-me</mime-type> |
||
| 727 | </mime-mapping> |
||
| 728 | <mime-mapping> |
||
| 729 | <extension>mid</extension> |
||
| 730 | <mime-type>audio/x-midi</mime-type> |
||
| 731 | </mime-mapping> |
||
| 732 | <mime-mapping> |
||
| 733 | <extension>midi</extension> |
||
| 734 | <mime-type>audio/x-midi</mime-type> |
||
| 735 | </mime-mapping> |
||
| 736 | <mime-mapping> |
||
| 737 | <extension>mif</extension> |
||
| 738 | <mime-type>application/x-mif</mime-type> |
||
| 739 | </mime-mapping> |
||
| 740 | <mime-mapping> |
||
| 741 | <extension>mov</extension> |
||
| 742 | <mime-type>video/quicktime</mime-type> |
||
| 743 | </mime-mapping> |
||
| 744 | <mime-mapping> |
||
| 745 | <extension>movie</extension> |
||
| 746 | <mime-type>video/x-sgi-movie</mime-type> |
||
| 747 | </mime-mapping> |
||
| 748 | <mime-mapping> |
||
| 749 | <extension>mp1</extension> |
||
| 750 | <mime-type>audio/x-mpeg</mime-type> |
||
| 751 | </mime-mapping> |
||
| 752 | <mime-mapping> |
||
| 753 | <extension>mp2</extension> |
||
| 754 | <mime-type>audio/x-mpeg</mime-type> |
||
| 755 | </mime-mapping> |
||
| 756 | <mime-mapping> |
||
| 757 | <extension>mp3</extension> |
||
| 758 | <mime-type>audio/x-mpeg</mime-type> |
||
| 759 | </mime-mapping> |
||
| 760 | <mime-mapping> |
||
| 761 | <extension>mp4</extension> |
||
| 762 | <mime-type>video/mp4</mime-type> |
||
| 763 | </mime-mapping> |
||
| 764 | <mime-mapping> |
||
| 765 | <extension>mpa</extension> |
||
| 766 | <mime-type>audio/x-mpeg</mime-type> |
||
| 767 | </mime-mapping> |
||
| 768 | <mime-mapping> |
||
| 769 | <extension>mpe</extension> |
||
| 770 | <mime-type>video/mpeg</mime-type> |
||
| 771 | </mime-mapping> |
||
| 772 | <mime-mapping> |
||
| 773 | <extension>mpeg</extension> |
||
| 774 | <mime-type>video/mpeg</mime-type> |
||
| 775 | </mime-mapping> |
||
| 776 | <mime-mapping> |
||
| 777 | <extension>mpega</extension> |
||
| 778 | <mime-type>audio/x-mpeg</mime-type> |
||
| 779 | </mime-mapping> |
||
| 780 | <mime-mapping> |
||
| 781 | <extension>mpg</extension> |
||
| 782 | <mime-type>video/mpeg</mime-type> |
||
| 783 | </mime-mapping> |
||
| 784 | <mime-mapping> |
||
| 785 | <extension>mpv2</extension> |
||
| 786 | <mime-type>video/mpeg2</mime-type> |
||
| 787 | </mime-mapping> |
||
| 788 | <mime-mapping> |
||
| 789 | <extension>ms</extension> |
||
| 790 | <mime-type>application/x-wais-source</mime-type> |
||
| 791 | </mime-mapping> |
||
| 792 | <mime-mapping> |
||
| 793 | <extension>nc</extension> |
||
| 794 | <mime-type>application/x-netcdf</mime-type> |
||
| 795 | </mime-mapping> |
||
| 796 | <mime-mapping> |
||
| 797 | <extension>oda</extension> |
||
| 798 | <mime-type>application/oda</mime-type> |
||
| 799 | </mime-mapping> |
||
| 800 | <mime-mapping> |
||
| 801 | <!-- OpenDocument Database --> |
||
| 802 | <extension>odb</extension> |
||
| 803 | <mime-type>application/vnd.oasis.opendocument.database</mime-type> |
||
| 804 | </mime-mapping> |
||
| 805 | <mime-mapping> |
||
| 806 | <!-- OpenDocument Chart --> |
||
| 807 | <extension>odc</extension> |
||
| 808 | <mime-type>application/vnd.oasis.opendocument.chart</mime-type> |
||
| 809 | </mime-mapping> |
||
| 810 | <mime-mapping> |
||
| 811 | <!-- OpenDocument Formula --> |
||
| 812 | <extension>odf</extension> |
||
| 813 | <mime-type>application/vnd.oasis.opendocument.formula</mime-type> |
||
| 814 | </mime-mapping> |
||
| 815 | <mime-mapping> |
||
| 816 | <!-- OpenDocument Drawing --> |
||
| 817 | <extension>odg</extension> |
||
| 818 | <mime-type>application/vnd.oasis.opendocument.graphics</mime-type> |
||
| 819 | </mime-mapping> |
||
| 820 | <mime-mapping> |
||
| 821 | <!-- OpenDocument Image --> |
||
| 822 | <extension>odi</extension> |
||
| 823 | <mime-type>application/vnd.oasis.opendocument.image</mime-type> |
||
| 824 | </mime-mapping> |
||
| 825 | <mime-mapping> |
||
| 826 | <!-- OpenDocument Master Document --> |
||
| 827 | <extension>odm</extension> |
||
| 828 | <mime-type>application/vnd.oasis.opendocument.text-master</mime-type> |
||
| 829 | </mime-mapping> |
||
| 830 | <mime-mapping> |
||
| 831 | <!-- OpenDocument Presentation --> |
||
| 832 | <extension>odp</extension> |
||
| 833 | <mime-type>application/vnd.oasis.opendocument.presentation</mime-type> |
||
| 834 | </mime-mapping> |
||
| 835 | <mime-mapping> |
||
| 836 | <!-- OpenDocument Spreadsheet --> |
||
| 837 | <extension>ods</extension> |
||
| 838 | <mime-type>application/vnd.oasis.opendocument.spreadsheet</mime-type> |
||
| 839 | </mime-mapping> |
||
| 840 | <mime-mapping> |
||
| 841 | <!-- OpenDocument Text --> |
||
| 842 | <extension>odt</extension> |
||
| 843 | <mime-type>application/vnd.oasis.opendocument.text</mime-type> |
||
| 844 | </mime-mapping> |
||
| 845 | <mime-mapping> |
||
| 846 | <extension>ogg</extension> |
||
| 847 | <mime-type>application/ogg</mime-type> |
||
| 848 | </mime-mapping> |
||
| 849 | <mime-mapping> |
||
| 850 | <!-- OpenDocument Drawing Template --> |
||
| 851 | <extension>otg </extension> |
||
| 852 | <mime-type>application/vnd.oasis.opendocument.graphics-template</mime-type> |
||
| 853 | </mime-mapping> |
||
| 854 | <mime-mapping> |
||
| 855 | <!-- HTML Document Template --> |
||
| 856 | <extension>oth</extension> |
||
| 857 | <mime-type>application/vnd.oasis.opendocument.text-web</mime-type> |
||
| 858 | </mime-mapping> |
||
| 859 | <mime-mapping> |
||
| 860 | <!-- OpenDocument Presentation Template --> |
||
| 861 | <extension>otp</extension> |
||
| 862 | <mime-type>application/vnd.oasis.opendocument.presentation-template</mime-type> |
||
| 863 | </mime-mapping> |
||
| 864 | <mime-mapping> |
||
| 865 | <!-- OpenDocument Spreadsheet Template --> |
||
| 866 | <extension>ots</extension> |
||
| 867 | <mime-type>application/vnd.oasis.opendocument.spreadsheet-template </mime-type> |
||
| 868 | </mime-mapping> |
||
| 869 | <mime-mapping> |
||
| 870 | <!-- OpenDocument Text Template --> |
||
| 871 | <extension>ott</extension> |
||
| 872 | <mime-type>application/vnd.oasis.opendocument.text-template</mime-type> |
||
| 873 | </mime-mapping> |
||
| 874 | <mime-mapping> |
||
| 875 | <extension>pbm</extension> |
||
| 876 | <mime-type>image/x-portable-bitmap</mime-type> |
||
| 877 | </mime-mapping> |
||
| 878 | <mime-mapping> |
||
| 879 | <extension>pct</extension> |
||
| 880 | <mime-type>image/pict</mime-type> |
||
| 881 | </mime-mapping> |
||
| 882 | <mime-mapping> |
||
| 883 | <extension>pdf</extension> |
||
| 884 | <mime-type>application/pdf</mime-type> |
||
| 885 | </mime-mapping> |
||
| 886 | <mime-mapping> |
||
| 887 | <extension>pgm</extension> |
||
| 888 | <mime-type>image/x-portable-graymap</mime-type> |
||
| 889 | </mime-mapping> |
||
| 890 | <mime-mapping> |
||
| 891 | <extension>pic</extension> |
||
| 892 | <mime-type>image/pict</mime-type> |
||
| 893 | </mime-mapping> |
||
| 894 | <mime-mapping> |
||
| 895 | <extension>pict</extension> |
||
| 896 | <mime-type>image/pict</mime-type> |
||
| 897 | </mime-mapping> |
||
| 898 | <mime-mapping> |
||
| 899 | <extension>pls</extension> |
||
| 900 | <mime-type>audio/x-scpls</mime-type> |
||
| 901 | </mime-mapping> |
||
| 902 | <mime-mapping> |
||
| 903 | <extension>png</extension> |
||
| 904 | <mime-type>image/png</mime-type> |
||
| 905 | </mime-mapping> |
||
| 906 | <mime-mapping> |
||
| 907 | <extension>pnm</extension> |
||
| 908 | <mime-type>image/x-portable-anymap</mime-type> |
||
| 909 | </mime-mapping> |
||
| 910 | <mime-mapping> |
||
| 911 | <extension>pnt</extension> |
||
| 912 | <mime-type>image/x-macpaint</mime-type> |
||
| 913 | </mime-mapping> |
||
| 914 | <mime-mapping> |
||
| 915 | <extension>ppm</extension> |
||
| 916 | <mime-type>image/x-portable-pixmap</mime-type> |
||
| 917 | </mime-mapping> |
||
| 918 | <mime-mapping> |
||
| 919 | <extension>ppt</extension> |
||
| 920 | <mime-type>application/powerpoint</mime-type> |
||
| 921 | </mime-mapping> |
||
| 922 | <mime-mapping> |
||
| 923 | <extension>ps</extension> |
||
| 924 | <mime-type>application/postscript</mime-type> |
||
| 925 | </mime-mapping> |
||
| 926 | <mime-mapping> |
||
| 927 | <extension>psd</extension> |
||
| 928 | <mime-type>image/x-photoshop</mime-type> |
||
| 929 | </mime-mapping> |
||
| 930 | <mime-mapping> |
||
| 931 | <extension>qt</extension> |
||
| 932 | <mime-type>video/quicktime</mime-type> |
||
| 933 | </mime-mapping> |
||
| 934 | <mime-mapping> |
||
| 935 | <extension>qti</extension> |
||
| 936 | <mime-type>image/x-quicktime</mime-type> |
||
| 937 | </mime-mapping> |
||
| 938 | <mime-mapping> |
||
| 939 | <extension>qtif</extension> |
||
| 940 | <mime-type>image/x-quicktime</mime-type> |
||
| 941 | </mime-mapping> |
||
| 942 | <mime-mapping> |
||
| 943 | <extension>ras</extension> |
||
| 944 | <mime-type>image/x-cmu-raster</mime-type> |
||
| 945 | </mime-mapping> |
||
| 946 | <mime-mapping> |
||
| 947 | <extension>rdf</extension> |
||
| 948 | <mime-type>application/rdf+xml</mime-type> |
||
| 949 | </mime-mapping> |
||
| 950 | <mime-mapping> |
||
| 951 | <extension>rgb</extension> |
||
| 952 | <mime-type>image/x-rgb</mime-type> |
||
| 953 | </mime-mapping> |
||
| 954 | <mime-mapping> |
||
| 955 | <extension>rm</extension> |
||
| 956 | <mime-type>application/vnd.rn-realmedia</mime-type> |
||
| 957 | </mime-mapping> |
||
| 958 | <mime-mapping> |
||
| 959 | <extension>roff</extension> |
||
| 960 | <mime-type>application/x-troff</mime-type> |
||
| 961 | </mime-mapping> |
||
| 962 | <mime-mapping> |
||
| 963 | <extension>rtf</extension> |
||
| 964 | <mime-type>application/rtf</mime-type> |
||
| 965 | </mime-mapping> |
||
| 966 | <mime-mapping> |
||
| 967 | <extension>rtx</extension> |
||
| 968 | <mime-type>text/richtext</mime-type> |
||
| 969 | </mime-mapping> |
||
| 970 | <mime-mapping> |
||
| 971 | <extension>sh</extension> |
||
| 972 | <mime-type>application/x-sh</mime-type> |
||
| 973 | </mime-mapping> |
||
| 974 | <mime-mapping> |
||
| 975 | <extension>shar</extension> |
||
| 976 | <mime-type>application/x-shar</mime-type> |
||
| 977 | </mime-mapping> |
||
| 978 | <!-- |
||
| 979 | <mime-mapping> |
||
| 980 | <extension>shtml</extension> |
||
| 981 | <mime-type>text/x-server-parsed-html</mime-type> |
||
| 982 | </mime-mapping> |
||
| 983 | --> |
||
| 984 | <mime-mapping> |
||
| 985 | <extension>smf</extension> |
||
| 986 | <mime-type>audio/x-midi</mime-type> |
||
| 987 | </mime-mapping> |
||
| 988 | <mime-mapping> |
||
| 989 | <extension>sit</extension> |
||
| 990 | <mime-type>application/x-stuffit</mime-type> |
||
| 991 | </mime-mapping> |
||
| 992 | <mime-mapping> |
||
| 993 | <extension>snd</extension> |
||
| 994 | <mime-type>audio/basic</mime-type> |
||
| 995 | </mime-mapping> |
||
| 996 | <mime-mapping> |
||
| 997 | <extension>src</extension> |
||
| 998 | <mime-type>application/x-wais-source</mime-type> |
||
| 999 | </mime-mapping> |
||
| 1000 | <mime-mapping> |
||
| 1001 | <extension>sv4cpio</extension> |
||
| 1002 | <mime-type>application/x-sv4cpio</mime-type> |
||
| 1003 | </mime-mapping> |
||
| 1004 | <mime-mapping> |
||
| 1005 | <extension>sv4crc</extension> |
||
| 1006 | <mime-type>application/x-sv4crc</mime-type> |
||
| 1007 | </mime-mapping> |
||
| 1008 | <mime-mapping> |
||
| 1009 | <extension>swf</extension> |
||
| 1010 | <mime-type>application/x-shockwave-flash</mime-type> |
||
| 1011 | </mime-mapping> |
||
| 1012 | <mime-mapping> |
||
| 1013 | <extension>t</extension> |
||
| 1014 | <mime-type>application/x-troff</mime-type> |
||
| 1015 | </mime-mapping> |
||
| 1016 | <mime-mapping> |
||
| 1017 | <extension>tar</extension> |
||
| 1018 | <mime-type>application/x-tar</mime-type> |
||
| 1019 | </mime-mapping> |
||
| 1020 | <mime-mapping> |
||
| 1021 | <extension>tcl</extension> |
||
| 1022 | <mime-type>application/x-tcl</mime-type> |
||
| 1023 | </mime-mapping> |
||
| 1024 | <mime-mapping> |
||
| 1025 | <extension>tex</extension> |
||
| 1026 | <mime-type>application/x-tex</mime-type> |
||
| 1027 | </mime-mapping> |
||
| 1028 | <mime-mapping> |
||
| 1029 | <extension>texi</extension> |
||
| 1030 | <mime-type>application/x-texinfo</mime-type> |
||
| 1031 | </mime-mapping> |
||
| 1032 | <mime-mapping> |
||
| 1033 | <extension>texinfo</extension> |
||
| 1034 | <mime-type>application/x-texinfo</mime-type> |
||
| 1035 | </mime-mapping> |
||
| 1036 | <mime-mapping> |
||
| 1037 | <extension>tif</extension> |
||
| 1038 | <mime-type>image/tiff</mime-type> |
||
| 1039 | </mime-mapping> |
||
| 1040 | <mime-mapping> |
||
| 1041 | <extension>tiff</extension> |
||
| 1042 | <mime-type>image/tiff</mime-type> |
||
| 1043 | </mime-mapping> |
||
| 1044 | <mime-mapping> |
||
| 1045 | <extension>tr</extension> |
||
| 1046 | <mime-type>application/x-troff</mime-type> |
||
| 1047 | </mime-mapping> |
||
| 1048 | <mime-mapping> |
||
| 1049 | <extension>tsv</extension> |
||
| 1050 | <mime-type>text/tab-separated-values</mime-type> |
||
| 1051 | </mime-mapping> |
||
| 1052 | <mime-mapping> |
||
| 1053 | <extension>txt</extension> |
||
| 1054 | <mime-type>text/plain</mime-type> |
||
| 1055 | </mime-mapping> |
||
| 1056 | <mime-mapping> |
||
| 1057 | <extension>ulw</extension> |
||
| 1058 | <mime-type>audio/basic</mime-type> |
||
| 1059 | </mime-mapping> |
||
| 1060 | <mime-mapping> |
||
| 1061 | <extension>ustar</extension> |
||
| 1062 | <mime-type>application/x-ustar</mime-type> |
||
| 1063 | </mime-mapping> |
||
| 1064 | <mime-mapping> |
||
| 1065 | <extension>vxml</extension> |
||
| 1066 | <mime-type>application/voicexml+xml</mime-type> |
||
| 1067 | </mime-mapping> |
||
| 1068 | <mime-mapping> |
||
| 1069 | <extension>xbm</extension> |
||
| 1070 | <mime-type>image/x-xbitmap</mime-type> |
||
| 1071 | </mime-mapping> |
||
| 1072 | <mime-mapping> |
||
| 1073 | <extension>xht</extension> |
||
| 1074 | <mime-type>application/xhtml+xml</mime-type> |
||
| 1075 | </mime-mapping> |
||
| 1076 | <mime-mapping> |
||
| 1077 | <extension>xhtml</extension> |
||
| 1078 | <mime-type>application/xhtml+xml</mime-type> |
||
| 1079 | </mime-mapping> |
||
| 1080 | <mime-mapping> |
||
| 1081 | <extension>xml</extension> |
||
| 1082 | <mime-type>application/xml</mime-type> |
||
| 1083 | </mime-mapping> |
||
| 1084 | <mime-mapping> |
||
| 1085 | <extension>xpm</extension> |
||
| 1086 | <mime-type>image/x-xpixmap</mime-type> |
||
| 1087 | </mime-mapping> |
||
| 1088 | <mime-mapping> |
||
| 1089 | <extension>xsl</extension> |
||
| 1090 | <mime-type>application/xml</mime-type> |
||
| 1091 | </mime-mapping> |
||
| 1092 | <mime-mapping> |
||
| 1093 | <extension>xslt</extension> |
||
| 1094 | <mime-type>application/xslt+xml</mime-type> |
||
| 1095 | </mime-mapping> |
||
| 1096 | <mime-mapping> |
||
| 1097 | <extension>xul</extension> |
||
| 1098 | <mime-type>application/vnd.mozilla.xul+xml</mime-type> |
||
| 1099 | </mime-mapping> |
||
| 1100 | <mime-mapping> |
||
| 1101 | <extension>xwd</extension> |
||
| 1102 | <mime-type>image/x-xwindowdump</mime-type> |
||
| 1103 | </mime-mapping> |
||
| 1104 | <mime-mapping> |
||
| 1105 | <extension>wav</extension> |
||
| 1106 | <mime-type>audio/x-wav</mime-type> |
||
| 1107 | </mime-mapping> |
||
| 1108 | <mime-mapping> |
||
| 1109 | <extension>svg</extension> |
||
| 1110 | <mime-type>image/svg+xml</mime-type> |
||
| 1111 | </mime-mapping> |
||
| 1112 | <mime-mapping> |
||
| 1113 | <extension>svgz</extension> |
||
| 1114 | <mime-type>image/svg+xml</mime-type> |
||
| 1115 | </mime-mapping> |
||
| 1116 | <mime-mapping> |
||
| 1117 | <extension>vsd</extension> |
||
| 1118 | <mime-type>application/x-visio</mime-type> |
||
| 1119 | </mime-mapping> |
||
| 1120 | <mime-mapping> |
||
| 1121 | <!-- Wireless Bitmap --> |
||
| 1122 | <extension>wbmp</extension> |
||
| 1123 | <mime-type>image/vnd.wap.wbmp</mime-type> |
||
| 1124 | </mime-mapping> |
||
| 1125 | <mime-mapping> |
||
| 1126 | <!-- WML Source --> |
||
| 1127 | <extension>wml</extension> |
||
| 1128 | <mime-type>text/vnd.wap.wml</mime-type> |
||
| 1129 | </mime-mapping> |
||
| 1130 | <mime-mapping> |
||
| 1131 | <!-- Compiled WML --> |
||
| 1132 | <extension>wmlc</extension> |
||
| 1133 | <mime-type>application/vnd.wap.wmlc</mime-type> |
||
| 1134 | </mime-mapping> |
||
| 1135 | <mime-mapping> |
||
| 1136 | <!-- WML Script Source --> |
||
| 1137 | <extension>wmls</extension> |
||
| 1138 | <mime-type>text/vnd.wap.wmlscript</mime-type> |
||
| 1139 | </mime-mapping> |
||
| 1140 | <mime-mapping> |
||
| 1141 | <!-- Compiled WML Script --> |
||
| 1142 | <extension>wmlscriptc</extension> |
||
| 1143 | <mime-type>application/vnd.wap.wmlscriptc</mime-type> |
||
| 1144 | </mime-mapping> |
||
| 1145 | <mime-mapping> |
||
| 1146 | <extension>wmv</extension> |
||
| 1147 | <mime-type>video/x-ms-wmv</mime-type> |
||
| 1148 | </mime-mapping> |
||
| 1149 | <mime-mapping> |
||
| 1150 | <extension>wrl</extension> |
||
| 1151 | <mime-type>x-world/x-vrml</mime-type> |
||
| 1152 | </mime-mapping> |
||
| 1153 | <mime-mapping> |
||
| 1154 | <extension>wspolicy</extension> |
||
| 1155 | <mime-type>application/wspolicy+xml</mime-type> |
||
| 1156 | </mime-mapping> |
||
| 1157 | <mime-mapping> |
||
| 1158 | <extension>Z</extension> |
||
| 1159 | <mime-type>application/x-compress</mime-type> |
||
| 1160 | </mime-mapping> |
||
| 1161 | <mime-mapping> |
||
| 1162 | <extension>z</extension> |
||
| 1163 | <mime-type>application/x-compress</mime-type> |
||
| 1164 | </mime-mapping> |
||
| 1165 | <mime-mapping> |
||
| 1166 | <extension>zip</extension> |
||
| 1167 | <mime-type>application/zip</mime-type> |
||
| 1168 | </mime-mapping> |
||
| 1169 | <mime-mapping> |
||
| 1170 | <extension>xls</extension> |
||
| 1171 | <mime-type>application/vnd.ms-excel</mime-type> |
||
| 1172 | </mime-mapping> |
||
| 1173 | <mime-mapping> |
||
| 1174 | <extension>doc</extension> |
||
| 1175 | <mime-type>application/vnd.ms-word</mime-type> |
||
| 1176 | </mime-mapping> |
||
| 1177 | <mime-mapping> |
||
| 1178 | <extension>ppt</extension> |
||
| 1179 | <mime-type>application/vnd.ms-powerpoint</mime-type> |
||
| 1180 | </mime-mapping> |
||
| 1181 | |||
| 1182 | <!-- ==================== Default Welcome File List ===================== --> |
||
| 1183 | <!-- When a request URI refers to a directory, the default servlet looks --> |
||
| 1184 | <!-- for a "welcome file" within that directory and, if present, --> |
||
| 1185 | <!-- to the corresponding resource URI for display. If no welcome file --> |
||
| 1186 | <!-- is present, the default servlet either serves a directory listing, --> |
||
| 1187 | <!-- or returns a 404 status, depending on how it is configured. --> |
||
| 1188 | <!-- --> |
||
| 1189 | <!-- If you define welcome files in your own application's web.xml --> |
||
| 1190 | <!-- deployment descriptor, that list *replaces* the list configured --> |
||
| 1191 | <!-- here, so be sure that you include any of the default values that --> |
||
| 1192 | <!-- you wish to include. --> |
||
| 1193 | |||
| 1194 | <welcome-file-list> |
||
| 1195 | <welcome-file>index.html</welcome-file> |
||
| 1196 | <welcome-file>index.htm</welcome-file> |
||
| 1197 | <welcome-file>index.jsp</welcome-file> |
||
| 1198 | </welcome-file-list> |
||
| 1199 | |||
| 1200 | </web-app> |