[Yanel-commits] rev 44631 - public/yanel/trunk/src/httpd-2.2.3/conf/extra

michi at wyona.com michi at wyona.com
Mon Sep 7 15:09:24 CEST 2009


Author: michi
Date: 2009-09-07 15:09:24 +0200 (Mon, 07 Sep 2009)
New Revision: 44631

Modified:
   public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts.conf
Log:
proxy balancer example added

Modified: public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts.conf
===================================================================
--- public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts.conf	2009-09-07 13:05:37 UTC (rev 44630)
+++ public/yanel/trunk/src/httpd-2.2.3/conf/extra/httpd-vhosts.conf	2009-09-07 13:09:24 UTC (rev 44631)
@@ -44,3 +44,25 @@
     ProxyPass           /  http://127.0.0.1:9090/yanel/yulup-website/
     ProxyPassReverse    /  http://127.0.0.1:9090/yanel/yulup-website/
 </VirtualHost>
+
+<VirtualHost *:80>
+    ServerAdmin michael.wechner at wyona.com
+    ServerName yanel.wyona.org
+    ServerAlias www.yanel.org
+    ServerAlias yanel.org
+    ErrorLog logs/yanel.wyona.org-error_log
+    CustomLog logs/yanel.wyona.org-access_log common
+
+    ProxyPassReverseCookiePath /yanel /
+
+    # See (local.)yanel.properties and src/build/(local.)build.properties
+    # Using proxy balancer module
+    <Proxy balancer://mycluster>
+      BalancerMember http://127.0.0.1:9190
+      BalancerMember http://127.0.0.1:9290
+    </Proxy>
+    ProxyPass           /javadoc  balancer://mycluster/yanel/javadoc/
+    ProxyPassReverse    /javadoc  balancer://mycluster/yanel/javadoc/
+    ProxyPass           /  balancer://mycluster/yanel/yanel-website/
+    ProxyPassReverse    /  balancer://mycluster/yanel/yanel-website/
+</VirtualHost>



More information about the Yanel-commits mailing list