1 <?xml version="1.0" encoding="UTF-8"?>
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
10 http://www.apache.org/licenses/LICENSE-2.0
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 --><!-- Note: A "Server" is not itself a "Container", so you may not
18 define subcomponents such as "Valves" at this level.
19 Documentation at /docs/config/server.html
20 --><Server port="8005" shutdown="SHUTDOWN">
22 <!--APR library loader. Documentation at /docs/apr.html -->
23 <Listener SSLEngine="on" className="org.apache.catalina.core.AprLifecycleListener"/>
24 <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
25 <Listener className="org.apache.catalina.core.JasperListener"/>
26 <!-- Prevent memory leaks due to use of particular java/javax APIs-->
27 <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"/>
28 <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->
29 <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"/>
30 <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/>
32 <!-- Global JNDI resources
33 Documentation at /docs/jndi-resources-howto.html
35 <GlobalNamingResources>
36 <!-- Editable user database that can also be used by
37 UserDatabaseRealm to authenticate users
39 <Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
40 </GlobalNamingResources>
42 <!-- A "Service" is a collection of one or more "Connectors" that share
43 a single "Container" Note: A "Service" is not itself a "Container",
44 so you may not define subcomponents such as "Valves" at this level.
45 Documentation at /docs/config/service.html
47 <Service name="Catalina">
49 <!--The connectors can use a shared executor, you can define one or more named thread pools-->
51 <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
52 maxThreads="150" minSpareThreads="4"/>
56 <!-- A "Connector" represents an endpoint by which requests are received
57 and responses are returned. Documentation at :
58 Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
59 Java AJP Connector: /docs/config/ajp.html
60 APR (HTTP/AJP) Connector: /docs/apr.html
61 Define a non-SSL HTTP/1.1 Connector on port 8080
63 <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
64 <!-- A "Connector" using the shared thread pool-->
66 <Connector executor="tomcatThreadPool"
67 port="8080" protocol="HTTP/1.1"
68 connectionTimeout="20000"
69 redirectPort="8443" />
71 <!-- Define a SSL HTTP/1.1 Connector on port 8443
72 This connector uses the JSSE configuration, when using APR, the
73 connector should be using the OpenSSL style configuration
74 described in the APR documentation -->
76 <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
77 maxThreads="150" scheme="https" secure="true"
78 clientAuth="false" sslProtocol="TLS" />
81 <!-- Define an AJP 1.3 Connector on port 8009 -->
82 <Connector port="8009" protocol="AJP/1.3" redirectPort="8443"/>
85 <!-- An Engine represents the entry point (within Catalina) that processes
86 every request. The Engine implementation for Tomcat stand alone
87 analyzes the HTTP headers included with the request, and passes them
88 on to the appropriate Host (virtual host).
89 Documentation at /docs/config/engine.html -->
91 <!-- You should set jvmRoute to support load-balancing via AJP ie :
92 <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
94 <Engine defaultHost="localhost" name="Catalina">
96 <!--For clustering, please take a look at documentation at:
97 /docs/cluster-howto.html (simple how to)
98 /docs/config/cluster.html (reference documentation) -->
100 <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
103 <!-- The request dumper valve dumps useful debugging information about
104 the request and response data received and sent by Tomcat.
105 Documentation at: /docs/config/valve.html -->
107 <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
110 <!-- This Realm uses the UserDatabase configured in the global JNDI
111 resources under the key "UserDatabase". Any edits
112 that are performed against this UserDatabase are immediately
113 available for use by the Realm. -->
114 <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/>
116 <!-- Define the default virtual host
117 Note: XML Schema validation will not work with Xerces 2.2.
119 <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true" xmlNamespaceAware="false" xmlValidation="false">
121 <!-- SingleSignOn valve, share authentication between web applications
122 Documentation at: /docs/config/valve.html -->
124 <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
127 <!-- Access log processes all example.
128 Documentation at: /docs/config/valve.html -->
130 <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
131 prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
134 <Context docBase="Siman" path="/Siman" reloadable="true" source="org.eclipse.jst.jee.server:Siman"/></Host>