Changes between Version 3 and Version 4 of jazz/demo.crawlzilla.info


Ignore:
Timestamp:
Apr 4, 2013, 10:20:38 AM (11 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/demo.crawlzilla.info

    v3 v4  
    3737 * [參考] http://www.tomcatexpert.com/blog/2011/11/22/performance-tuning-jvm-running-tomcat
    3838 * [參考] [http://stackoverflow.com/questions/13631994/what-is-the-best-practice-for-tomcat-performance-tuning-in-amazon-ubuntu-instanc What is the best practice for tomcat performance tuning in Amazon ubuntu instance?]
     39
     40 * 此外,也發現 Apache2 的 Keep-Alive 時間很長,因此需要對 Apache2 的 mod_proxy 做一些調整
     41   * [參考] http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass
     42{{{
     43  ProxyPass         /   http://140.110.X.X:8080/ connectiontimeout=2 timeout=5 ttl=5
     44  ProxyPassReverse  /   http://140.110.X.X:8080/
     45  SetEnv proxy-nokeepalive 1
     46}}}