2a6191e997ff3f4c017f4566ac0565cc3e7e443c
[policy/engine.git] / packages / base / src / files / install / servers / configs / conf / server.xml
1 <?xml version='1.0' encoding='utf-8'?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11   
12        http://www.apache.org/licenses/LICENSE-2.0
13   
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
21
22 <!--
23   Licensed to the Apache Software Foundation (ASF) under one or more
24   contributor license agreements.  See the NOTICE file distributed with
25   this work for additional information regarding copyright ownership.
26   The ASF licenses this file to You under the Apache License, Version 2.0
27   (the "License"); you may not use this file except in compliance with
28   the License.  You may obtain a copy of the License at
29
30       http://www.apache.org/licenses/LICENSE-2.0
31
32   Unless required by applicable law or agreed to in writing, software
33   distributed under the License is distributed on an "AS IS" BASIS,
34   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35   See the License for the specific language governing permissions and
36   limitations under the License.
37 -->
38 <!-- Note:  A "Server" is not itself a "Container", so you may not
39      define subcomponents such as "Valves" at this level.
40      Documentation at /docs/config/server.html
41  -->
42 <Server port="${{TOMCAT_SHUTDOWN_PORT}}" shutdown="SHUTDOWN">
43   <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
44   <!-- Security listener. Documentation at /docs/config/listeners.html
45   <Listener className="org.apache.catalina.security.SecurityListener" />
46   -->
47   <!--APR library loader. Documentation at /docs/apr.html -->
48   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
49   <!-- Prevent memory leaks due to use of particular java/javax APIs-->
50   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
51   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
52   <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
53
54   <!-- Global JNDI resources
55        Documentation at /docs/jndi-resources-howto.html
56   -->
57   <GlobalNamingResources>
58     <!-- Editable user database that can also be used by
59          UserDatabaseRealm to authenticate users
60     -->
61     <Resource name="UserDatabase" auth="Container"
62               type="org.apache.catalina.UserDatabase"
63               description="User database that can be updated and saved"
64               factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
65               pathname="conf/tomcat-users.xml" />
66   </GlobalNamingResources>
67
68   <!-- A "Service" is a collection of one or more "Connectors" that share
69        a single "Container" Note:  A "Service" is not itself a "Container",
70        so you may not define subcomponents such as "Valves" at this level.
71        Documentation at /docs/config/service.html
72    -->
73   <Service name="Catalina">
74
75     <!--The connectors can use a shared executor, you can define one or more named thread pools-->
76     <!--
77     <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
78         maxThreads="150" minSpareThreads="4"/>
79     -->
80
81
82     <!-- A "Connector" represents an endpoint by which requests are received
83          and responses are returned. Documentation at :
84          Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
85          Java AJP  Connector: /docs/config/ajp.html
86          APR (HTTP/AJP) Connector: /docs/apr.html
87          Define a non-SSL/TLS HTTP/1.1 Connector on port 8080
88     -->
89     
90     <Connector port="${{SSL_HTTP_CONNECTOR_PORT}}" protocol="HTTP/1.1"
91                connectionTimeout="20000"
92                redirectPort="${{SSL_HTTP_CONNECTOR_REDIRECT_PORT}}" />
93
94     <!-- A "Connector" using the shared thread pool-->
95     <!--
96     <Connector executor="tomcatThreadPool"
97                port="8080" protocol="HTTP/1.1"
98                connectionTimeout="20000"
99                redirectPort="8443" />
100     -->
101     <!-- Define a SSL/TLS HTTP/1.1 Connector on port 8443
102          This connector uses the NIO implementation that requires the JSSE
103          style configuration. When using the APR/native implementation, the
104          OpenSSL style configuration is required as described in the APR/native
105          documentation -->
106
107         <!--  
108     <Connector port="${{SSL_HTTP_CONNECTOR_PORT}}" protocol="org.apache.coyote.http11.Http11NioProtocol"
109                maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
110                clientAuth="false" sslProtocol="TLS"
111                keystoreFile="${{POLICY_HOME}}/etc/ssl/policy-keystore" keystorePass="${{KEYSTORE_PASSWD}}"/>
112         -->         
113
114
115     <!-- Define an AJP 1.3 Connector on port 8009 -->
116         <!--      
117     <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
118     -->
119
120
121     <!-- An Engine represents the entry point (within Catalina) that processes
122          every request.  The Engine implementation for Tomcat stand alone
123          analyzes the HTTP headers included with the request, and passes them
124          on to the appropriate Host (virtual host).
125          Documentation at /docs/config/engine.html -->
126
127     <!-- You should set jvmRoute to support load-balancing via AJP ie :
128     <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
129     -->
130     <Engine name="Catalina" defaultHost="localhost">
131
132       <!--For clustering, please take a look at documentation at:
133           /docs/cluster-howto.html  (simple how to)
134           /docs/config/cluster.html (reference documentation) -->
135       <!--
136       <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
137       -->
138
139       <!-- Use the LockOutRealm to prevent attempts to guess user passwords
140            via a brute-force attack -->
141       <Realm className="org.apache.catalina.realm.LockOutRealm">
142         <!-- This Realm uses the UserDatabase configured in the global JNDI
143              resources under the key "UserDatabase".  Any edits
144              that are performed against this UserDatabase are immediately
145              available for use by the Realm.  -->
146         <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
147                resourceName="UserDatabase"/>
148       </Realm>
149
150       <Host name="localhost"  appBase="webapps"
151             unpackWARs="true" autoDeploy="true">
152
153         <!-- SingleSignOn valve, share authentication between web applications
154              Documentation at: /docs/config/valve.html -->
155         <!--
156         <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
157         -->
158
159         <!-- Access log processes all example.
160              Documentation at: /docs/config/valve.html
161              Note: The pattern used is equivalent to using pattern="common" -->
162         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
163                prefix="localhost_access_log" suffix=".txt"
164                pattern="%h %l %u %t &quot;%r&quot; %s %b" />
165
166       </Host>
167     </Engine>
168   </Service>
169 </Server>