mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
113 lines
4.4 KiB
XML
113 lines
4.4 KiB
XML
<?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.
|
|
-->
|
|
<!-- Note: A "Server" is not itself a "Container", so you may not
|
|
define subcomponents such as "Valves" at this level.
|
|
Documentation at /docs/config/server.html
|
|
-->
|
|
<Server port="8005" shutdown="SHUTDOWN">
|
|
<!-- Security listener. Documentation at /docs/config/listeners.html
|
|
<Listener className="org.apache.catalina.security.SecurityListener" />
|
|
-->
|
|
<!--APR library loader. Documentation at /docs/apr.html -->
|
|
<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
|
|
<!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
|
|
<Listener className="org.apache.catalina.core.JasperListener" />
|
|
<!-- Prevent memory leaks due to use of particular java/javax APIs-->
|
|
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
|
|
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
|
|
<Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
|
|
|
|
<!-- Global JNDI resources
|
|
Documentation at /docs/jndi-resources-howto.html
|
|
-->
|
|
<GlobalNamingResources>
|
|
<!-- Editable user database that can also be used by
|
|
UserDatabaseRealm to authenticate users
|
|
-->
|
|
<Resource name="UserDatabase" auth="Container"
|
|
type="org.apache.catalina.UserDatabase"
|
|
description="User database that can be updated and saved"
|
|
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
|
|
pathname="conf/tomcat-users.xml" />
|
|
</GlobalNamingResources>
|
|
|
|
<Service name="CloudStackManagement">
|
|
|
|
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
|
|
maxThreads="150" minSpareThreads="25"/>
|
|
|
|
<Connector executor="tomcatThreadPool"
|
|
port="8080" protocol="HTTP/1.1"
|
|
connectionTimeout="20000"
|
|
acceptCount="150"
|
|
enableLookups="false"
|
|
maxThreads="150"
|
|
maxHttpHeaderSize="8192"
|
|
redirectPort="8443" />
|
|
|
|
<Engine name="Catalina" defaultHost="localhost">
|
|
|
|
<Realm className="org.apache.catalina.realm.LockOutRealm">
|
|
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
|
|
resourceName="UserDatabase"/>
|
|
</Realm>
|
|
|
|
<Host name="localhost" appBase="webapps"
|
|
unpackWARs="true" autoDeploy="true">
|
|
|
|
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
|
|
prefix="localhost_access_log." suffix=".txt"
|
|
pattern="%h %l %u %t "%r" %s %b" />
|
|
|
|
</Host>
|
|
</Engine>
|
|
</Service>
|
|
|
|
<Service name="CloudStackAwsApi">
|
|
|
|
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
|
|
maxThreads="150" minSpareThreads="25"/>
|
|
|
|
<Connector executor="tomcatThreadPool"
|
|
port="7080" protocol="HTTP/1.1"
|
|
connectionTimeout="20000"
|
|
acceptCount="150"
|
|
enableLookups="false"
|
|
maxThreads="150"
|
|
maxHttpHeaderSize="8192"
|
|
redirectPort="8443" />
|
|
|
|
<Engine name="Catalina7080" defaultHost="localhost">
|
|
|
|
<Realm className="org.apache.catalina.realm.LockOutRealm">
|
|
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
|
|
resourceName="UserDatabase"/>
|
|
</Realm>
|
|
|
|
<Host name="localhost" appBase="webapps7080"
|
|
unpackWARs="true" autoDeploy="true">
|
|
|
|
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
|
|
prefix="localhost_7080_access_log." suffix=".txt"
|
|
pattern="%h %l %u %t "%r" %s %b" />
|
|
|
|
</Host>
|
|
</Engine>
|
|
</Service>
|
|
</Server>
|