robert 4 роки тому
батько
коміт
b612d0a42a
2 змінених файлів з 273 додано та 166 видалено
  1. 273 0
      resin.conf
  2. 0 166
      resin.xml

+ 273 - 0
resin.conf

@@ -0,0 +1,273 @@
+<!--
+   - Resin 3.1 configuration file.
+  -->
+<resin xmlns="http://caucho.com/ns/resin"
+       xmlns:resin="http://caucho.com/ns/resin/core">
+
+  <!-- adds all .jar files under the resin/lib directory -->
+  <class-loader>
+    <tree-loader path="${resin.home}/ext-lib"/>
+    <tree-loader path="${resin.root}/ext-lib"/>
+
+    <tree-loader path="${resin.home}/lib"/>
+    <tree-loader path="${resin.root}/lib"/>
+  </class-loader>
+
+  <!--
+     - Management configuration
+     -
+     - Remote management requires at least one enabled admin user.
+    -->
+  <management path="${resin.root}/admin">
+    <user name="admin" password="password" disable="true"/>
+
+    <resin:if test="${resin.professional}">
+      <deploy-service/>
+      <jmx-service/>
+      <log-service/>
+      <xa-log-service/>
+    </resin:if>
+  </management>
+
+
+  <log name="" level="info" path="stdout:"
+       timestamp="[%Y-%m-%d %H:%M:%S.%s] {%{thread}} "/>
+ <log name='' level='fine' path='stderr:' timestamp="[%Y-%m-%d %H:%M:%S.%s] {%{thread}} "/>
+
+  <logger name="com.caucho" level="info"/>
+  <logger name="com.caucho.java" level="config"/>
+  <logger name="com.caucho.loader" level="config"/>
+
+
+  <dependency-check-interval>2s</dependency-check-interval>
+
+  <javac compiler="internal" args="-source 1.6"/>
+
+
+  <cluster id="app-tier">
+    <!-- sets the content root for the cluster, relative to server.root -->
+    <root-directory>.</root-directory>
+
+    <server-default>
+      <!-- The http port -->
+      <http address="*" port="8080"/>
+
+   
+      <jvm-arg>-server</jvm-arg>
+      <jvm-arg>-Xmx4096m</jvm-arg>
+      <jvm-arg>-Xms4096m</jvm-arg>
+      <jvm-arg>-Xmn1024m</jvm-arg>
+      <jvm-arg>-Xss1m</jvm-arg>
+      <jvm-arg>-XX:PermSize=128m</jvm-arg>
+      <jvm-arg>-XX:MaxPermSize=256m</jvm-arg>
+<!--
+      <jvm-arg>-Xincgc</jvm-arg>
+-->
+      <jvm-arg>-Xdebug</jvm-arg>
+      <jvm-arg>-Dcom.sun.management.jmxremote</jvm-arg>
+      <jvm-arg>-Djava.util.prefs.userRoot=/home/book/preps</jvm-arg>
+
+      <!--
+         - Uncomment to enable admin heap dumps
+         - <jvm-arg>-agentlib:resin</jvm-arg>
+        -->
+
+      <!--
+         - arguments for the watchdog process
+        -->
+      <watchdog-jvm-arg>-Dcom.sun.management.jmxremote</watchdog-jvm-arg>
+      <watchdog-port>9600</watchdog-port>
+
+      <!--
+         - Configures the minimum free memory allowed before Resin
+         - will force a restart.
+        -->
+      <memory-free-min>1M</memory-free-min>
+
+      <!-- Maximum number of threads. -->
+      <thread-max>2300</thread-max>
+
+      <!-- Configures the socket timeout -->
+      <socket-timeout>15s</socket-timeout>
+
+      <!-- Configures the keepalive -->
+      <keepalive-max>128</keepalive-max>
+      <keepalive-timeout>15s</keepalive-timeout>
+
+    
+    </server-default>
+
+    <!-- define the servers in the cluster -->
+    <server id="" address="127.0.0.1" port="6800" load-balance-socket-timeout="600s"/>
+
+    <resin:if test="${resin.professional}">
+      <persistent-store type="cluster">
+        <init path="session"/>
+      </persistent-store>
+    </resin:if>
+
+
+    <!--
+       - Enables the cache (available in Resin Professional) 
+      -->
+    <resin:if test="${resin.professional}">
+      <cache path="cache" memory-size="64M">
+        <!-- Vary header rewriting for IE -->
+        <rewrite-vary-as-private/>
+      </cache>
+    </resin:if>
+
+    <!--
+       - Enables periodic checking of the server status and
+       - check for deadlocks..
+       -
+       - All servers can add <url>s to be checked.
+      -->
+    <resin:if test="${resin.professional}">
+      <ping>
+        <!-- <url>http://localhost:8080/test-ping.jsp</url> -->
+      </ping>
+    </resin:if>
+
+    <!--
+       - Defaults applied to each web-app.
+      -->
+    <web-app-default>
+      <prologue>
+        <!--
+           - 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="${resin.root}/ext-webapp-lib"/>
+        </class-loader>
+
+        <!--
+           - Enable EL expressions in Servlet and Filter init-param
+          -->
+        <allow-servlet-el/>
+      </prologue>
+      
+      <!--
+         - Sets timeout values for cacheable pages, e.g. static pages.
+        -->
+      <cache-mapping url-pattern="/" expires="60m"/>
+      <cache-mapping url-pattern="/*.m" expires="60m"/>
+
+
+      <!--
+         - for security, disable session URLs by default.
+        -->
+      <session-config>
+        <enable-url-rewriting>false</enable-url-rewriting>
+        <session-timeout>40</session-timeout>
+        <session-max>12000</session-max>
+      </session-config>
+
+      <!--
+         - For security, set the HttpOnly flag in cookies.
+         - <cookie-http-only/>
+        -->
+
+      <!--
+         - Some JSP packages have incorrect .tld files.  Its possible to
+         - set validate-taglib-schema to false to work around these packages.
+        -->
+        <jsp>
+          <validate-taglib-schema>true</validate-taglib-schema>
+          <fast-jstl>true</fast-jstl>
+          <fast-jsf>false</fast-jsf>
+        </jsp>
+    </web-app-default>
+
+    <!-- includes the app-default for default web-app behavior -->
+    <resin:import path="${resin.home}/conf/app-default.xml"/>
+
+    <!--
+       - Sample database pool configuration
+       -
+       - The JDBC name is java:comp/env/jdbc/test
+        <database>
+       <jndi-name>jdbc/noveladmin</jndi-name>
+       <driver type="com.mysql.jdbc.Driver">
+         <url>jdbc:mysql://10.13.24.176:3306/ESBOOKCONFIG</url>
+         <user>wap.esbconf</user>
+         <password>qazwsx@186</password>
+        </driver>
+        <prepared-statement-cache-size>20</prepared-statement-cache-size>
+        <max-connections>60</max-connections>
+        <max-idle-time>30s</max-idle-time>
+        <max-active-time>12h</max-active-time>
+        <max-pool-time>12h</max-pool-time>
+        </database>
+         -->
+
+        <database>
+            <jndi-name>jdbc/noveladmin</jndi-name>
+            <driver type="com.mysql.jdbc.Driver">
+            <url>jdbc:mysql://10.26.30.112:3306/noveladmin</url>
+            <user>wap.news</user>
+            <password>qazwsx</password>
+            </driver>
+            <prepared-statement-cache-size>20</prepared-statement-cache-size>
+            <max-connections>60</max-connections>
+            <max-idle-time>30s</max-idle-time>
+            <max-active-time>12h</max-active-time>
+            <max-pool-time>12h</max-pool-time>
+        </database>
+    <!--
+       - Default host configuration applied to all virtual hosts.
+      -->
+    <host-default>
+      <!--
+         - With another web server, like Apache, this can be commented out
+         - because the web server will log this information. -->
+
+       <access-log path-format="/data/log/other/access.log" 
+            format='v2{]b.easou.com{]%r{]%{uid_bi}c{]%{%Y%m%d %H%M%S%s}t{]%s{]-{]%D{]%b{]%b{]%{X-Real-IP}i{]%{X-Forwarded-For}i{]%{Referer}i{]-{]%{User-Agent}i{]online_ta{]%{uid_bi}c{]-{]%{uid}c{]%{cid}c{]{]v2' 
+            rollover-period="1h"/>
+
+      <!-- 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>
+          <ejb-server>
+            <config-directory>WEB-INF</config-directory>
+          </ejb-server>
+        </ear-default>
+      </ear-deploy>
+
+      <!-- creates the deploy directory for .rar expansion -->
+      <resource-deploy path="deploy"/>
+    </host-default>
+
+    <!-- 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="" root-directory=".">
+        <web-app id="/" character-encoding='UTF-8' document-directory="/data/project/ROOT" archive-path="/data/project/ROOT.war">
+        <stdout-log path="/data/log/devlog/stdout.log" rollover-period="1W"/>
+        <stderr-log path="/data/log/devlog/stderr.log" rollover-period='1W'/>
+        <!--<access-log path="/data/log/novelweb/access.log"
+            format='%h"%{%Y-%m-%d %H:%M:%S}t"%r"%s"%b"%{esid}o"%{cid}o"%{X-Forwarded-For}i"%{mobile}o"%{ua}o"%{mid}o"%{did}o'
+            rollover-period="1D"/> -->
+       <jsp>
+        <dependency-check-interval>300s</dependency-check-interval>
+       </jsp>
+       </web-app>
+    </host>
+  </cluster>
+
+  <!--
+     - Configuration for the web-tier/load-balancer
+    -->
+</resin>

+ 0 - 166
resin.xml

@@ -1,166 +0,0 @@
-<!--
-             - Resin 4.0 configuration file.
-                       -->
-<resin xmlns="http://caucho.com/ns/resin"
-       xmlns:resin="urn:java:com.caucho.resin">
-
-  <!-- property-based Resin configuration -->
-  <resin:properties path="${__DIR__}/resin.properties" optional="true"/>
-
-  <resin:if test="${properties_import_url}">
-  <resin:properties path="${properties_import_url}"
-  optional="true" recover="true"/>
-  </resin:if>
-
-
-  <!-- Logging configuration for the JDK logging API -->
-  <log-handler name="" level="all" path="stdout:"
-  timestamp="[%y-%m-%d %H:%M:%S.%s]"
-  format=" {${thread}} ${log.message}"/>
-                                                                                                  
-  <!-- 
-  - Alternative pseudo-TTCC log format
-  -
-  - <log-handler name="" level="all" path="stdout:"
-  -           timestamp="%y-%m-%d %H:%M:%S.%s"
-  -           format=" [${thread}] ${log.level} ${log.shortName} - ${log.message}"/>
-                                                                                                                                                         -->
-   
-  <!--
-  - level='info' for production
-  - 'fine' or 'finer' for development and troubleshooting
-                                                         -->
-  <logger name="" level="${log_level?:'info'}"/>
-
-  <logger name="com.caucho.java" level="config"/>
-  <logger name="com.caucho.loader" level="config"/>
-
-  <!--
-  - Default configuration applied to all clusters, including
-  - HTTP, HTTPS, and /resin-admin configuration.
-                                                         -->
-  <resin:import path="${__DIR__}/cluster-default.xml"/>
-      
-  <!--
-                   - health configuration
-                                   -->
-  <resin:import path="${__DIR__}/health.xml"/>
-
-  
-  <!--
-  - Remote management requires at least one enabled admin user.
-                                  -->
-  <resin:AdminAuthenticator>
-  <user name="${admin_user}" password="${admin_password}"/>
-                  
-  <resin:import path="${__DIR__}/admin-users.xml" optional="true"/>
-  </resin:AdminAuthenticator>
-
-  <!--
-                   - For clustered systems, create a password in as cluster_system_key
-                                   -->
-  <cluster-system-key>${cluster_system_key}</cluster-system-key>
-
-  <!--
-                   - For production sites, change dependency-check-interval to something
-                                    - like 600s, so it only checks for updates every 10 minutes.
-                                                         -->
-  <dependency-check-interval>${dependency_check_interval?:'2s'}</dependency-check-interval>
-
-  <!-- For resin.properties dynamic cluster joining -->
-  <home-cluster>${home_cluster}</home-cluster>
-  <home-server>${home_server}</home-server>
-  <elastic-server>${elastic_server}</elastic-server>
-  <elastic-dns>${elastic_dns}</elastic-dns>
-  
-  <!--
-     - JSSE default properties
-    -->
-  <system-property
-    jdk.tls.ephemeralDHKeySize="2048"
-    jdk.tls.rejectClientInitiatedRenegotiation="true"
-    sun.security.ssl.allowUnsafeRenegotiation="false"
-    sun.security.ssl.allowLegacyHelloMessages="false"/>
-     
-  <!--
-  - Configures the main application cluster.  Load-balancing configurations
-  - will also have a web cluster.
-                                                         -->
-  <cluster id="app">
-        <!-- define the servers in the cluster -->
-  <server-multi id-prefix="app-" address-list="${app_servers}" port="6800"/>
-
-  <host-default>
-              <!-- creates the webapps directory for .war expansion -->
-  <web-app-deploy path="/data/project"
-  expand-preserve-fileset="WEB-INF/work/**"
-  multiversion-routing="${webapp_multiversion_routing}"
-  path-suffix="${elastic_webapp?resin.id:''}"/>
-  </host-default>
-
-  <!-- auto virtual host deployment in hosts/foo.example.com/webapps -->
-  <host-deploy path="hosts">
-  <host-default>
-  <resin:import path="host.xml" optional="true"/>
-  </host-default>
-  </host-deploy>
-
-  <!-- the default host, matching any host name -->
-  <host id="" root-directory=".">
-              <!--
-  - webapps can be overridden/extended in the resin.xml
-              -->
-   <web-app id="/" root-directory="/data/project/ROOT"/>
-   <stderr-log path='/data/wapage/log/resin/stderr.log' timestamp='[%Y-%m-%d %H:%M:%S] ' rollover-period='1D'/>
-   <stdout-log path='/data/wapage/log/resin/stdout.log' timestamp='[%Y-%m-%d %H:%M:%S] ' rollover-period='1D'/> 
-
-    </host>
-              
-    <resin:if test="${resin_doc}">
-    <host id="${resin_doc_host}" root-directory="${resin_doc_host}">
-    <web-app id="/resin-doc" root-directory="${resin.root}/doc/resin-doc"/>
-    </host>
-    </resin:if>
-    </cluster>
-
-  <cluster id="web">
-        <!-- define the servers in the cluster -->
-    <server-multi id-prefix="web-" address-list="${web_servers}" port="6810"/>
-
-    <host id="" root-directory="web">
-    <web-app id="">
-    <resin:LoadBalance regexp="" cluster="app"/>
-    </web-app>
-                                                                                      
-    <web-app id="/async">
-    <resin:LoadBalance regexp="" cluster="app"/>
-    </web-app>
-    </host>
-    </cluster>
-
-  <cluster id="memcached" xmlns:memcache="urn:java:com.caucho.memcached">
-        <!-- define the servers in the cluster -->
-    <server-multi id-prefix="memcached-" address-list="${memcached_servers}" port="6820">
-              <!-- listen for the memcache protocol -->
-      <listen port="${memcached_port?:11211}"
-      keepalive-timeout="600s" socket-timeout="600s">
-      <memcache:MemcachedProtocol/>
-      </listen>
-      </server-multi>
-      </cluster>
-         
-                                                                                                                                                                                             
-  <cluster id="proxycache">
-        <!-- define the servers in the cluster -->
-  <server-multi id-prefix="proxycache-" address-list="${proxycache_servers}" port="6830"/>
-
-  <host id="" root-directory="proxycache">
-  <web-app id="">
-  <resin:HttpProxy regexp=".*">
-  <!-- backend HTTP servers to proxy to -->
-  <addresses>${backend_servers}</addresses>
-  </resin:HttpProxy>
-  </web-app>
-  </host>
-  </cluster>
-</resin>