Mercurial > public > ssdt-docker
annotate tomcat/server.xml @ 386:3c0d82dcd168 production vv2.12.0
flow: Merged <release> 'v2.12.0' to <master> ('production').
author | Marc Davis <davis@ssdt-ohio.org> |
---|---|
date | Tue, 14 Sep 2021 09:43:21 -0400 |
parents | adbef03ee9e8 |
children |
rev | line source |
---|---|
23 | 1 <?xml version='1.0' encoding='utf-8'?> |
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 <Server port="8005" shutdown="SHUTDOWN"> | |
19 <Listener className="org.apache.catalina.startup.VersionLoggerListener" /> | |
20 <!-- Security listener. Documentation at /docs/config/listeners.html | |
21 <Listener className="org.apache.catalina.security.SecurityListener" /> | |
22 --> | |
23 <!--APR library loader. Documentation at /docs/apr.html --> | |
24 <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /> | |
25 <!-- Prevent memory leaks due to use of particular java/javax APIs--> | |
26 <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" /> | |
27 <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" /> | |
28 <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" /> | |
29 | |
30 | |
31 <GlobalNamingResources> | |
32 <Resource name="UserDatabase" auth="Container" | |
33 type="org.apache.catalina.UserDatabase" | |
34 description="User database for tomcat manager app" | |
35 factory="org.apache.catalina.users.MemoryUserDatabaseFactory" | |
36 pathname="conf/tomcat-users.xml" /> | |
37 </GlobalNamingResources> | |
38 | |
39 <Service name="Catalina"> | |
40 | |
41 <Executor name="tomcatThreads" | |
42 namePrefix="tomcat-exec-" | |
43 maxThreads="200" | |
44 minSpareThreads="1" | |
45 maxIdleTime="300000" | |
46 /> | |
47 | |
48 <Connector port="8080" protocol="HTTP/1.1" | |
49 connectionTimeout="20000" | |
50 redirectPort="8443" | |
51 executor="tomcatThreads"/> | |
52 | |
53 <Engine name="Catalina" defaultHost="localhost"> | |
54 | |
55 <!-- Use the LockOutRealm to prevent attempts to guess user passwords | |
56 via a brute-force attack --> | |
57 <Realm className="org.apache.catalina.realm.LockOutRealm"> | |
58 <!-- This Realm uses the UserDatabase configured in the global JNDI | |
59 resources under the key "UserDatabase". Any edits | |
60 that are performed against this UserDatabase are immediately | |
61 available for use by the Realm. --> | |
62 <Realm className="org.apache.catalina.realm.UserDatabaseRealm" | |
63 resourceName="UserDatabase"/> | |
64 </Realm> | |
65 | |
92
120fc16ea511
USASR-2388: update tomcat. customize logging. disable autodepoy.
smith@nwoca.org
parents:
23
diff
changeset
|
66 <Host name="localhost" appBase="webapps" unpackWARs="false" autoDeploy="false"> |
23 | 67 <Valve className="org.apache.catalina.valves.AccessLogValve" |
68 directory="logs" | |
69 prefix="localhost_access_log" suffix=".txt" | |
255 | 70 pattern="%h %l %u %t "%r" %s %b" |
71 maxDays="5"/> | |
23 | 72 |
73 </Host> | |
74 </Engine> | |
75 </Service> | |
76 </Server> |