resin.conf

<!--
   - Resin 3.0 configuration file.
  -->
<resin xmlns="http://caucho.com/ns/resin"
       xmlns:resin="http://caucho.com/ns/resin/core">
  <!--
     - Logging configuration for the JDK logging API.
    -->
  <log name="" level="info" path="stdout:" timestamp="[%H:%M:%S.%s] "/>
  <log name="com.caucho.java" level="config" path="stdout:"
       timestamp="[%H:%M:%S.%s] "/>
  <log name="com.caucho.loader" level="config" path="stdout:"
       timestamp="[%H:%M:%S.%s] "/>

  <!--
     - For production sites, change dependency-check-interval to something
     - like 600s, so it only checks for updates every 10 minutes.
    -->
  <dependency-check-interval>2s</dependency-check-interval>

  <!--
     - You can change the compiler to "javac" or jikes.
     - The default is "internal" only because it's the most
     - likely to be available.
    -->
  <javac compiler="internal" args=""/>

  <!-- Security providers.
     - <security-provider>
     -    com.sun.net.ssl.internal.ssl.Provider
     - </security-provider>
    -->

  <!--
     - If starting bin/resin as root on Unix, specify the user name
     - and group name for the web server user.
     -
     - <user-name>resin</user-name>
     - <group-name>resin</group-name>
    -->

  <!--
     - Configures threads shared among all HTTP and SRUN ports.
    -->
  <thread-pool>
    <!-- Maximum number of threads. -->
    <thread-max>128</thread-max>

    <!-- Minimum number of spare connection threads. -->
    <spare-thread-min>25</spare-thread-min>
  </thread-pool>

  <!--
     - Configures the minimum free memory allowed before Resin
     - will force a restart.
    -->
  <min-free-memory>1M</min-free-memory>

  <server>
    <!-- adds all .jar files under the resin/lib directory -->
    <class-loader>
      <tree-loader path="${resin.home}/lib"/>
      <tree-loader path="${server.root}/lib"/>
    </class-loader>

    <!-- Configures the keepalive -->
    <keepalive-max>20</keepalive-max>
    <keepalive-timeout>15s</keepalive-timeout>

    <resin:if test="${resin.isProfessional()}">
      <select-manager enable="true"/>
    </resin:if>

    <!-- The http port -->
    <http server-id="" host="*" port="8088"/>

    <!--
       - SSL port configuration:
       -
       - <http port="8443">
       -   <openssl>
       -     <certificate-file>keys/gryffindor.crt</certificate-file>
       -     <certificate-key-file>keys/gryffindor.key</certificate-key-file>
       -     <password>test123</password>
       -   </openssl>
       - </http>
      -->

    <!--
       - The local cluster, used for load balancing and distributed
       - backup.
      -->
    <cluster>
      <srun server-id="a" host="127.0.0.1" port="6802"/>
      <srun server-id="b" host="127.0.0.1" port="6803"/>
      <srun server-id="c" host="127.0.0.1" port="6804"/>


    </cluster>

    <!--
       - Configures the persistent store for single-server or clustered
       - in Resin professional.
      -->
    <resin:if test="${resin.isProfessional()}">
      <persistent-store type="cluster">
        <init path="session"/>
      </persistent-store>
    </resin:if>

    <!--
       - Enables/disables exceptions when the browser closes a connection.
      -->
    <ignore-client-disconnect>true</ignore-client-disconnect>

    <!--
       - For security, use a different cookie for SSL sessions.
       - <ssl-session-cookie>SSL_JSESSIONID</ssl-session-cookie>
      -->

    <!--
       - Enables the cache (available in Resin Professional)
      -->
    <resin:if test="${isResinProfessional}">
      <cache path="cache" memory-size="8M"/>
    </resin:if>

    <!--
       - Enables periodic checking of the server status.
       -
       - With JDK 1.5, this will ask the JDK to check for deadlocks.
       - All servers can add <url>s to be checked.
      -->
    <resin:if test="${isResinProfessional}">
      <ping>
        <!-- <url>http://localhost:8080/test-ping.jsp</url> -->
      </ping>
    </resin:if>

    <!--
       - Defaults applied to each web-app.
      -->
    <web-app-default>
      <!--
         - Extension library for common jar files.  The ext is safe
         - even for non-classloader aware jars.  The loaded classes
         - will be loaded separately for each web-app, i.e. the class
         - itself will be distinct.
        -->
      <class-loader>
        <tree-loader path="${server.root}/ext-webapp"/>
      </class-loader>

      <!--
         - Sets timeout values for cacheable pages, e.g. static pages.
        -->
      <cache-mapping url-pattern="/" expires="5s"/>
      <cache-mapping url-pattern="*.gif" expires="60s"/>
      <cache-mapping url-pattern="*.jpg" expires="60s"/>

      <!--
         - Servlet to use for directory display.
        -->
      <servlet servlet-name="directory"
              servlet-class="com.caucho.servlets.DirectoryServlet"/>

      <!--
         - Enable EL expressions in Servlet and Filter init-param
        -->
      <allow-servlet-el/>

      <!--
         - for security, disable session URLs by default.
        -->
      <session-config>
        <enable-url-rewriting>false</enable-url-rewriting>
      </session-config>

      <!--
         - For security, set the HttpOnly flag in cookies.
         - <cookie-http-only/>
        -->
    </web-app-default>

    <!--
       - Sample database pool configuration
       -
       - The JDBC name is java:comp/env/jdbc/test
       -  <database>
       -    <jndi-name>jdbc/mysql</jndi-name>
       -    <driver type="org.gjt.mm.mysql.Driver">
       -      <url>jdbc:mysql://localhost:3306/test</url>
       -      <user></user>
       -      <password></password>
       -     </driver>
       -     <prepared-statement-cache-size>8</prepared-statement-cache-size>
       -     <max-connections>20</max-connections>
       -     <max-idle-time>30s</max-idle-time>
       -   </database>
      -->

    <!--
       - Default host configuration applied to all virtual hosts.
      -->
    <host-default>
      <class-loader>
        <compiling-loader path="webapps/WEB-INF/classes"/>
        <library-loader path="webapps/WEB-INF/lib"/>
      </class-loader>

      <!--
         - With another web server, like Apache, this can be commented out
         - because the web server will log this information.
        -->
      <!--
      - <access-log path="logs/access.log"
        -    format='%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i"'
        -    rollover-period="1W"/>
-->

      <!-- creates the webapps directory for .war expansion -->
      <web-app-deploy path="webapps"/>

      <!-- creates the deploy directory for .ear expansion -->
      <ear-deploy path="deploy">
        <ear-default>
          <!-- Configure this for the ejb server
             -
             - <ejb-server>
             -   <config-directory>WEB-INF</config-directory>
             -   <data-source>jdbc/test</data-source>
             - </ejb-server>
            -->
        </ear-default>
      </ear-deploy>

      <!-- creates the deploy directory for .rar expansion -->
      <resource-deploy path="deploy"/>

      <!-- creates a second deploy directory for .war expansion -->
      <web-app-deploy path="deploy"/>
    </host-default>

    <!-- includes the web-app-default for default web-app behavior -->
    <resin:import path="${resinHome}/conf/app-default.xml"/>

    <!-- configures a deployment directory for virtual hosts -->
    <host-deploy path="hosts">
      <host-default>
        <resin:import path="host.xml" optional="true"/>
      </host-default>
    </host-deploy>

    <!-- configures the default host, matching any host name -->

    <host id="">
      <web-app id="/" document-directory="D:/usr/local/webapps/blog">
      <stdout-log path="/usr/local/resin/log/blogout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/blogerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='6M'/>
      </web-app>
    </host>

    <host id="photo.bajie.cn" root-directory=".">
      <web-app id="/" document-directory="D:/usr/local/webapps/uppic">
      <stdout-log path="/usr/local/resin/log/photout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/photoerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='3M'/>
      </web-app>
    </host>

    <host id="blog.bajie.cn" root-directory=".">
      <web-app id="/" document-directory="D:/usr/local/webapps/blog">
      <stdout-log path="/usr/local/resin/log/blogout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/blogerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='6M'/>
      </web-app>
    </host>

  <host id="cash.8jee.com" root-directory=".">
      <web-app id="/" document-directory="D:/usr/local/webapps/ad">
      <stdout-log path="/usr/local/resin/log/adout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/aderr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='3M'/>
      </web-app>
    </host>

<host id="www.jaabee.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/jaabee">
      <stdout-log path="/usr/local/resin/log/jaabeeout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/log/jaabeeerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>


<host id="erp.jaabee.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpjaabee">
      <stdout-log path="/usr/local/resin/log/erpjaabeeout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpjaabeeerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='3M'/>
      </web-app>
    </host>

<host id="erp.szpanzi.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpszpanzi">
      <stdout-log path="/usr/local/resin/log/erpszpanziout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpszpanzierr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='3M'/>
      </web-app>
    </host>

<host id="erp.wed0754.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpwed0754">
      <stdout-log path="/usr/local/resin/log/erpwed0754out" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpwed0754err" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='3M'/>
      </web-app>
    </host>

<host id="erp.gzxdjd.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpmodernvip">
      <stdout-log path="/usr/local/resin/log/wwwgzxdjdout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/wwwgzxdjderr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='3M'/>
      </web-app>
    </host>

<host id="dcd.wed0769.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpwed0769">
      <stdout-log path="/usr/local/resin/log/dcdwed0769out" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/dcdwed0769err" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.venusphoto.com.cn" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpvenusphoto">
      <stdout-log path="/usr/local/log/erpvenusphotoout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpvenusphotoerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.luowei.com.cn" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpluowei">
      <stdout-log path="/usr/local/resin/log/erpluoweiout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpluoweierr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.swarow.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpswarow">
      <stdout-log path="/usr/local/resin/log/erpswarowout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpswarowerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.fztbss.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpfztbss">
      <stdout-log path="/usr/local/resin/log/erpfztbssout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpfztbsserr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.xamqd.cn" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpxamqd">
      <stdout-log path="/usr/local/resin/log/erpxamqdout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpxamqderr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.cixilove.cn" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpcixilove">
      <stdout-log path="/usr/local/resin/log/erpcixiloveout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpcixiloveerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="dwd.wed0769.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/dwdwed0769">
      <stdout-log path="/usr/local/resin/log/dwdwed0769out" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/dwdwed0769err" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.cajfr.cn" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpcajfr">
      <stdout-log path="/usr/local/resin/log/erpcajfrout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpcajfrerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.tianran999.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erptianran999">
      <stdout-log path="/usr/local/resin/log/erptianran999out" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erptianran999err" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="xy.milanhs.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/xymilanhs">
      <stdout-log path="/usr/local/resin/log/xymilanhsout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/xymilanhserr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="www.blgzg.cn" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/wwwblgzg">
      <stdout-log path="/usr/local/resin/log/wwwblgzgout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/wwwblgzgerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="dgvivi.jaabee.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpdgvivi">
      <stdout-log path="/usr/local/resin/log/erpdgviviout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpdgvivierr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.lxxcsy.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erplxxcsy">
      <stdout-log path="/usr/local/resin/log/erplxxcsyout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erplxxcsyerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="love.fcjq-photo.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/lovefcjq-photo">
      <stdout-log path="/usr/local/resin/log/lovefcjq-photoout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/lovefcjq-photoerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.hmjfr.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erphmjfr">
      <stdout-log path="/usr/local/resin/log/erphmjfrout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erphmjfrerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>


<!-- host id="erp.0570hs.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erp0570hs">
      <stdout-log path="/usr/local/resin/log/erp0570hsout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erp0570hserr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host -->


<host id="erp.butterfly520.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erpbutterfly520">
      <stdout-log path="/usr/local/resin/log/erpbutterfly520out" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erpbutterfly520err" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="erp.hzmnls.cn" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/erphzmnls">
      <stdout-log path="/usr/local/resin/log/erphzmnlsout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/erphzmnlserr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="angel.jaabee.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/erp/angelsimple">
      <stdout-log path="/usr/local/resin/log/angeljaabeeout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/log/angeljaabeeerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

<host id="www.8jee.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/8jee">
      <stdout-log path="/usr/local/resin/log/8jeeout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/8jeeerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='20M'/>
      </web-app>
    </host>

<host id="www.szmilan.com" root-directory=".">

      <web-app id="/" document-directory="/usr/local/webapps/szmilan">
      <stdout-log path="/usr/local/resin/log/milanout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/resin/log/milanerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='2M'/>
      </web-app>
    </host>

<host id="crm.jaabee.com" root-directory=".">
      <web-app id="/" document-directory="/usr/local/webapps/jaabeecrm">
      <stdout-log path="/usr/local/resin/log/crmjaabeeout" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stdour.log"/>
      <stderr-log path="/usr/local/log/crmjaabeeerr" timestamp="[%Y-%m-%d %H:%M:%S.%s]"  rollover-period="1D" archive-format="%Y%m%d-stderr.log"/>
       <multipart-form upload-max='5M'/>
      </web-app>
    </host>

  </server>
</resin>

你可能感兴趣的:(jdk,Web,mysql,jdbc,Security)