12345678910111213141516171819202122232425262728293031323334 |
- <?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
- https://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.
- --><Server port="8006" shutdown="SHUTDOWN">
- <Listener SSLEngine="on" className="org.apache.catalina.core.AprLifecycleListener"/>
- <Service name="Catalina">
- <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
- <Connector SSLEnabled="true" clientAuth="true" keystoreFile="src/main/resources/certs/server.p12" keystorePass="password" maxThreads="150" port="8443" protocol="HTTP/1.1" scheme="https" secure="true" sslProtocol="TLS" truststorePass="password" truststoreFile="src/main/resources/certs/server.p12"/>
- <Connector port="8010" protocol="AJP/1.3" redirectPort="8443" secret="secret"/>
- <Engine defaultHost="localhost" name="Catalina">
- <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">
- <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t "%r" %s %b" prefix="localhost_access_log." suffix=".txt"/>
- </Host>
- </Engine>
- </Service>
- </Server>
|