RE: [us...@httpd] Apache 2.2: mod_proxy_balancer does not work as documented?

2010-01-15 Thread inas inassen
Hi these are my config files in httpd.conf add LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_ajp_module modules/mod_proxy_ajp.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so and include the

RE: [us...@httpd] Apache 2.2: mod_proxy_balancer does not work as documented?

2010-01-14 Thread inas inassen
English message follows Salut Francis Le mod_proxy fonctionne tres bien, je l'utilise en production depuis 2005 et mon apache est configuré pour service une quinzaine de tomcats repartis sur 6 virtuels host. Le JvmRoute est tres important, ça ne marche pas sans ce parametre. Je suis maintena

[us...@httpd] apache tuning

2009-05-07 Thread inas inassen
Hi all, is there any way to tune apache parameters for prefork or worker modules? StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25

[us...@httpd] apache response time

2009-05-06 Thread inas inassen
Hi all I'm using apache connected to 2 tomcat in mod_jk (ajp). on tomcat is running in the same box as apache (sun solaris 8GB of ram, 2 CPU) and another tomcat is running on another box (windows 2003). the apache config is : timeout set to 120 seconds keepalive set to 3 seconds ma

RE: [us...@httpd] jk2 configuration problem

2009-05-05 Thread inas inassen
on windows you need mod_jk.dll other thing, is not recommended to use jk2 because is not supported anymore, use jk instead. Inas. Date: Mon, 4 May 2009 20:58:58 -0700 From: arvin123...@yahoo.com To: users@httpd.apache.org Subject: [us...@httpd] jk2 configuration problem Hi, I

RE: [us...@httpd] SSL and Virtual Host

2009-05-04 Thread inas inassen
If you want to use subdomain based certificat and virtual host, please read this doc, it will help you understand the case you are experiencing and the solution you can adopte: http://fusesource.com/docs/framework/2.1/security/i382183.html http://www.verisign.com/ssl/ssl-information-center/

RE: [us...@httpd] How to define constant in apache configuration?

2009-04-21 Thread inas inassen
very nice, do you have any sample? Thanks. > Date: Tue, 21 Apr 2009 16:01:17 -0400 > From: cove...@gmail.com > To: users@httpd.apache.org > Subject: Re: [us...@httpd] How to define constant in apache configuration? > > On Tue, Apr 21, 2009 at 3:59 PM, inas inassen wrote:

RE: [us...@httpd] How to define constant in apache configuration?

2009-04-21 Thread inas inassen
Hi, I did some tests in the past using this way ${foo} by defining the variable foo in the bin/envvars file (like it works in Tomcat for example) but it fails for apache. So Eric, Please, can you provide us more detail if it worked for you? thanks, Inas. > Date: Mon, 20 Apr 20

RE: [us...@httpd] load balancing with Apache for Tomcat workers

2009-04-20 Thread inas inassen
Hi, this is another example using location directive for balancing applications arounds tomcats: suppose that you have 3 urls or applications you want to balance using these context path: app1, app2 and app3 suppose that you have 2 tomcats with ajp on ports 8009 and 8007 so you config i

RE: [us...@httpd] mod_proxy and mod_rewrite issue

2009-04-16 Thread inas inassen
6 Apr 2009 08:05:33 +0200 > From: a...@ice-sa.com > To: users@httpd.apache.org > Subject: Re: [us...@httpd] mod_proxy and mod_rewrite issue > > inas inassen wrote: > > Hi all, > > > > > > > > I have a web application running on tomcat with a cont

[us...@httpd] mod_proxy and mod_rewrite issue

2009-04-15 Thread inas inassen
Hi all, I have a web application running on tomcat with a context myapp I access this webapp via apache using a proxypass and proxy balancer ==> http://myserver.com/myapp Now, I want to use the url http://myserver.com and apache will forward my request to tomcat by adding the URI /myapp

RE: [us...@httpd] Switching between http and https

2009-04-01 Thread inas inassen
%{REQUEST_URI} [P,QSA,L] Thanks. Inas. > Date: Wed, 1 Apr 2009 14:15:42 -0400 > From: mearn...@gmail.com > To: users@httpd.apache.org > Subject: Re: [us...@httpd] Switching between http and https > > On Wed, Apr 1, 2009 at 1:24 PM, inas inassen wrote: > > Thanks Bri

RE: [us...@httpd] Switching between http and https

2009-04-01 Thread inas inassen
:11 -0400 > From: mearn...@gmail.com > To: users@httpd.apache.org > Subject: Re: [us...@httpd] Switching between http and https > > On Wed, Apr 1, 2009 at 11:19 AM, inas inassen wrote: > > > > Hi all, > > > > I'm using mod_proxy balancer with tomc

[us...@httpd] Switching between http and https

2009-04-01 Thread inas inassen
Hi all, I'm using mod_proxy balancer with tomcat and apache. I used mod_rewrite to switch between http and https When I have the pattern /nossl ==> I want to redirect to http When I have the pattern /ssl ==> I want to redirect to https so I write the following rules: RewriteEngi

RE: [us...@httpd] ProxyPass for more than 1 remote server

2009-03-25 Thread inas inassen
Thank you Krist, It seems working now, I'll do more tests. Inas. > Date: Wed, 25 Mar 2009 09:38:40 +0100 > From: krist.vanbes...@gmail.com > To: users@httpd.apache.org > Subject: Re: [us...@httpd] ProxyPass for more than 1 remote server > > On Wed, Mar 25, 2009 a

[us...@httpd] ProxyPass for more than 1 remote server

2009-03-24 Thread inas inassen
Hi all, I'm trying to make ProxyPass and ProxyPassReverse work within 2 remote server I have ProxyPass / http://server1:8080/ ProxyPassReverse / http://server1:8080/ ProxyPass /docs http://server2:8080/docs ProxyPassReverse /docs http://server2:8080/docs ProxyPass /jsp-examples http://se

[us...@httpd] ProxyPass for more than 1 remote server

2009-03-24 Thread inas inassen
Hi all, I'm trying to make ProxyPass and ProxyPassReverse work within 2 remote server I have ProxyPass / http://server1:8080/ ProxyPassReverse / http://server1:8080/ ProxyPass /docs http://server2:8080/docs ProxyPassReverse /docs http://server2:8080/docs ProxyPass /jsp-examples http:/

[us...@httpd]

2009-03-24 Thread inas inassen
Hi all, I'm trying to make ProxyPass and ProxyPassReverse work within 2 remote server I have ProxyPass / http://server1:8080/ ProxyPassReverse / http://server1:8080/ ProxyPass /docs http://server2:8080/docs ProxyPassReverse /docs http://server2:8080/docs ProxyPass /jsp-examples http://se