Tomcat配置

<Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">

        <!-- SingleSignOn valve, share authentication between web applications
             Documentation at: /docs/config/valve.html -->
        <!--
        <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
        -->

        <!-- Access log processes all example.
             Documentation at: /docs/config/valve.html
             Note: The pattern used is equivalent to using pattern="common" -->
        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log." suffix=".txt"
               pattern="%h %l %u %t &quot;%r&quot; %s %b" />

        <Context path="" docBase="D:\onlineexam\wts" sessionCookiePath="/" sessionCookieName="JSESSIONID" />

      </Host>
<Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">

        <!-- SingleSignOn valve, share authentication between web applications
             Documentation at: /docs/config/valve.html -->
        <!--
        <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
        -->
          <Context path="/wts" docBase="/var/www/wts" reloadable="true" /> 
        <!-- Access log processes all example.
             Documentation at: /docs/config/valve.html
             Note: The pattern used is equivalent to using pattern="common" -->
        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log." suffix=".txt"
               pattern="%h %l %u %t &quot;%r&quot; %s %b" />

      </Host>
  <Service name="Catalina">
    <!--<Connector port="443" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8893" />-->
    <!--<Connector port="8139" protocol="AJP/1.3" redirectPort="8573" />-->
      <Connector port="443"
      protocol="HTTP/1.1"
      SSLEnabled="true"
      scheme="https"
      secure="true"
      keystoreFile="C:\inetpub\onlineExam\ssl\one.ks365.org.pfx"
      keystoreType="PKCS12"
      keystorePass="6xF6sWX0"
      clientAuth="false"
      SSLProtocol="TLSv1+TLSv1.1+TLSv1.2"></Connector>
      <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 &quot;%r&quot; %s %b" />

      </Host>
    </Engine>
  </Service>

 

<!--<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />-->

 

<?xml version='1.0' encoding='utf-8'?>

<Server port="8895" shutdown="SHUTDOWN">
  <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
  <!--<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />-->
  <Listener className="org.apache.catalina.core.JasperListener" />
  <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />

  <GlobalNamingResources>
    <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="Catalina">
    <!--<Connector port="443" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8893" />-->
    <!--<Connector port="8139" protocol="AJP/1.3" redirectPort="8573" />-->
      <Connector port="443"
      protocol="HTTP/1.1"
      SSLEnabled="true"
      scheme="https"
      secure="true"
      keystoreFile="C:\inetpub\onlineExam\ssl\one.ks365.org.pfx"
      keystoreType="PKCS12"
      keystorePass="6xF6sWX0"
      clientAuth="false"
      SSLProtocol="TLSv1+TLSv1.1+TLSv1.2"></Connector>
      <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 &quot;%r&quot; %s %b" />

          <Context path="/hyt" docBase="C:\wtsweb\wts_hyt" reloadable="true"></Context>

          <Context path="/gk" docBase="C:\wtsweb\wts_gk" reloadable="true"></Context>

      </Host>
    </Engine>
  </Service>
</Server>
full sample

 

posted @ 2020-07-20 10:07  chy710  阅读(0)  评论(0)    收藏  举报