server.xml.in 1 KB
Newer Older
1 2 3 4 5 6 7
<?xml version='1.0' encoding='utf-8'?>
<Server port="-1" shutdown="SHUTDOWN">
  <Service name="Catalina">
    <Connector
      protocol="org.apache.coyote.http11.Http11Protocol"
      address="$${tomcat-configuration:ip}" 
      port="$${tomcat-configuration:port}"
8 9
      scheme="$${tomcat-configuration:scheme}"
      secure="true"
10
      clientAuth="false"
11 12 13
      SSLEnabled="true"
      keystorePass="$${keystore:pass}"
      keystoreFile="$${keystore:file}"
14
    />
15

16 17 18 19 20 21 22 23 24 25 26 27 28 29
    <Engine name="Catalina" defaultHost="localhost">
      <Valve className="org.apache.catalina.valves.AccessLogValve"
             directory="logs" prefix="localhost_access_log." suffix=".log"
             pattern="common" resolveHosts="false"/>
      <Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">
        <Context path="/" docBase="${vnu-output:war}" 
           privileged="true">
        </Context>
      </Host>
    </Engine>
  </Service>
</Server>