[EMAIL PROTECTED] Load balancer and ProxyPassReverse directive.

2008-02-18 Thread olivier giorgi
Hello to all, How are you? Firstly, it is a general query relative to Apache 2.2.4 load balancer. In the following cases (CASE 1, CASE 2 and CASE 3), i want to use the directive ProxyPassReverse, please, could you help me for each case which are specific (CASE 1, CASE 2 and CASE 3) (Thanks in

Re: [EMAIL PROTECTED] Help! My apache httpd server cannot close thread

2008-02-18 Thread 赵志桐
Eric Covener 写道: > On Feb 18, 2008 7:40 AM, 赵志桐 <[EMAIL PROTECTED]> wrote: > >> PingBad 写道: >> >> >> StartServers 2 >> MaxClients 150 >> MinSpareThreads5 >> MaxSpareThreads 10 >> ThreadsPerChild 25 >> MaxRequestsPerChild 0 >> >> > > For worker, Min/MaxSpareThr

Re: [EMAIL PROTECTED] Help! My apache httpd server cannot close thread

2008-02-18 Thread 赵志桐
Eric Covener 写道: > On Feb 18, 2008 7:40 AM, 赵志桐 <[EMAIL PROTECTED]> wrote: > >> PingBad 写道: >> >> >> StartServers 2 >> MaxClients 150 >> MinSpareThreads5 >> MaxSpareThreads 10 >> ThreadsPerChild 25 >> MaxRequestsPerChild 0 >> >> > > For worker, Min/MaxSpareThr

Re: [EMAIL PROTECTED] Help setting up a proxy, ServerName redirect causing problems

2008-02-18 Thread Ryan Stille
Eric Covener wrote: On Feb 18, 2008 5:20 PM, Ryan Stille <[EMAIL PROTECTED]> wrote: on a page to the /images directory), the final destination site issues a redirect, using its own ServerName, so then the user's browser tries to go there, which of course it cannot reach. ProxyPassRever

Re: [EMAIL PROTECTED] Help setting up a proxy, ServerName redirect causing problems

2008-02-18 Thread Eric Covener
On Feb 18, 2008 5:20 PM, Ryan Stille <[EMAIL PROTECTED]> wrote: > on a page to the /images directory), the final destination site issues a > redirect, using its own ServerName, so then the user's browser tries to > go there, which of course it cannot reach. ProxyPassReverse -- Eric Covener [EMAI

Re: [EMAIL PROTECTED] Problem seeing directory outside of APACHE_HOME

2008-02-18 Thread Joshua Slive
On Feb 18, 2008 6:39 PM, David Bartmess <[EMAIL PROTECTED]> wrote: > But all I get when I go to http://myserver.com/releases is a 403 Forbidden > page. What does the error log say? There are two likely possibilities, covered by the following two wiki pages: http://wiki.apache.org/httpd/13Permiss

Re: [EMAIL PROTECTED] Problem seeing directory outside of APACHE_HOME

2008-02-18 Thread sean kibler
alias /releases "/data/holding" Options All FollowSymLinks Indexes MultiViews AllowOverride All Order allow,deny Allow from all I put this in my /etc/httpd.conf. I made a directory tree in root of: /data/holding containing 2 files with permissions 755. After restarting Apache I was

[EMAIL PROTECTED] Problem seeing directory outside of APACHE_HOME

2008-02-18 Thread David Bartmess
I'm trying to let the users view a directory's contents that is located outside of /var/www/html. I've also tried using an .htaccess file with "Options +Indexes" in it in the root directory of the desired listing. I added the following to my httpd.conf Alias /releases "/data/holding"

[EMAIL PROTECTED] Help setting up a proxy, ServerName redirect causing problems

2008-02-18 Thread Ryan Stille
7I need to proxy requests coming into one virtualhost over to another virtual host on the same server. I've done this before but can't get it working with these two virtualhosts. It works as long as I always request the site with the trailing slash. But when I make a request without the trai

[EMAIL PROTECTED] compiling modules with apxs

2008-02-18 Thread Sean Kibler
Hi, first post and first time to a mailing list. I am trying to compile a mod_dav shared module for Apache 2.2.8. I'm doing this: apxs -i -a -c mod_dav.c I am in the directory with the include files for mod_dav. I have also tried using the -n option to supply the name but wasn't sure what to

Re: [EMAIL PROTECTED] Help! My apache httpd server cannot close thread

2008-02-18 Thread Eric Covener
On Feb 18, 2008 7:40 AM, 赵志桐 <[EMAIL PROTECTED]> wrote: > PingBad 写道: > > > StartServers 2 > MaxClients 150 > MinSpareThreads5 > MaxSpareThreads 10 > ThreadsPerChild 25 > MaxRequestsPerChild 0 > For worker, Min/MaxSpareThreads must be a multiple of ThreadsPerChild.

[EMAIL PROTECTED] Re: Adding "Listen 80" Breaks "Listen 9080"

2008-02-18 Thread Jonathan Mark
Thanks. It was the second problem. My localhost Zope server was for some reason running on 80. Everything works now. - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/usersli

Re: [EMAIL PROTECTED] bandwidth limiting

2008-02-18 Thread Matthew A. Bockol
Hi John, I've had success using mod_cband for these purposes. It's worth checking out. Matt - Original Message - From: "john frey" <[EMAIL PROTECTED]> To: users@httpd.apache.org Sent: Thursday, February 14, 2008 11:38:27 PM GMT -06:00 US/Canada Central Subject: Re: [EMAIL PROTECTED] ban

Re: [EMAIL PROTECTED] Server Side Include (SSI) is slower than PHP ?

2008-02-18 Thread howard chen
On Mon, Feb 18, 2008 at 10:47 PM, Nick Kew <[EMAIL PROTECTED]> wrote: > On Mon, 18 Feb 2008 15:49:09 +0800 > > "howard chen" <[EMAIL PROTECTED]> wrote: > > > > SSI > > === > > > > > > > > > > > > > > There is a subrequest per include, so SSI gets slower > as the number of includes inc

Re: [EMAIL PROTECTED] Adding "Listen 80" Breaks "Listen 9080"

2008-02-18 Thread Jim Jagielski
On Mon, Feb 18, 2008 at 06:51:54AM -0800, Jonathan Mark wrote: > The following rewrites the way it is supposed to. Visitors to port 9080 are > sent to yahoo.com: > > Listen 9080 > #Listen 80 > LoadModule rewrite_module modules/mod_rewrite.so > > RewriteEngine ON > RewriteRule "^/(.*)" http://yah

[EMAIL PROTECTED] Adding "Listen 80" Breaks "Listen 9080"

2008-02-18 Thread Jonathan Mark
The following rewrites the way it is supposed to. Visitors to port 9080 are sent to yahoo.com: Listen 9080 #Listen 80 LoadModule rewrite_module modules/mod_rewrite.so RewriteEngine ON RewriteRule "^/(.*)" http://yahoo.com However, uncommenting "Listen 80" breaks "Listen 9080". When Apache list

Re: [EMAIL PROTECTED] Server Side Include (SSI) is slower than PHP ?

2008-02-18 Thread Nick Kew
On Mon, 18 Feb 2008 15:49:09 +0800 "howard chen" <[EMAIL PROTECTED]> wrote: > SSI > === > > > > > > There is a subrequest per include, so SSI gets slower as the number of includes increases. > PHP > === > > > include("./modules/1.html"); > include("./modules/2.html"); > include("./modul

Re: [EMAIL PROTECTED] Server Side Include (SSI) is slower than PHP ?

2008-02-18 Thread 赵志桐
howard chen 写道: On Mon, Feb 18, 2008 at 9:03 PM, Vincent Bray <[EMAIL PROTECTED]> wrote: On 18/02/2008, howard chen <[EMAIL PROTECTED]> wrote: > I am running Apache/2.2.6 on Windows XP, testing on a very simple > include testes, e.g. > > SSI > === > > > > > > These kinds of

Re: [EMAIL PROTECTED] Server Side Include (SSI) is slower than PHP ?

2008-02-18 Thread howard chen
On Mon, Feb 18, 2008 at 9:03 PM, Vincent Bray <[EMAIL PROTECTED]> wrote: > On 18/02/2008, howard chen <[EMAIL PROTECTED]> wrote: > > I am running Apache/2.2.6 on Windows XP, testing on a very simple > > include testes, e.g. > > > > SSI > > === > > > > > > > > > > > > > > These kin

Re: [EMAIL PROTECTED] Help! My apache httpd server cannot close thread

2008-02-18 Thread 赵志桐
Graeme Fowler 写道: On Mon, 2008-02-18 at 20:40 +0800, 赵志桐 wrote: i adjust httpd.conf following StartServers 2 MaxClients 150 MinSpareThreads5 MaxSpareThreads 10 ThreadsPerChild 25 MaxRequestsPerChild 0 but also has a lot of httpd thread, can you help me ?

Re: [EMAIL PROTECTED] Proxy a response from a Proxy Pass

2008-02-18 Thread Vincent Bray
On 17/02/2008, Pat Malatack <[EMAIL PROTECTED]> wrote: > Is this possible to do with apache or should i have the internal server make > the > request of the second one? You should have your internal server make the second request. Apache has no support for this because what you're asking for isn'

Re: [EMAIL PROTECTED] Server Side Include (SSI) is slower than PHP ?

2008-02-18 Thread Vincent Bray
On 18/02/2008, howard chen <[EMAIL PROTECTED]> wrote: > I am running Apache/2.2.6 on Windows XP, testing on a very simple > include testes, e.g. > > SSI > === > > > > > > These kinds of includes cause Apache to run an internal redirect for each included file. This is just a guess but if your

Re: [EMAIL PROTECTED] Server Side Include (SSI) is slower than PHP ?

2008-02-18 Thread Scott Courtney
On Monday 18 February 2008 02:49:09 howard chen wrote: > I was surprised that PHP is faster, i.e. > > ab -n 2000 -c 10  http://localhost/benchmark.php => 99 reqs/sec > ab -n 2000 -c 10  http://localhost/benchmark.shtml => 61 reqs/sec > > my PHP version is 5.2.5, and even don't have any code cache

Re: [EMAIL PROTECTED] Help! My apache httpd server cannot close thread

2008-02-18 Thread Graeme Fowler
On Mon, 2008-02-18 at 20:40 +0800, 赵志桐 wrote: > i adjust httpd.conf following > > > StartServers 2 > MaxClients 150 > MinSpareThreads5 > MaxSpareThreads 10 > ThreadsPerChild 25 > MaxRequestsPerChild 0 > > > but also has a lot of httpd thread, can you help me ? How

Re: [EMAIL PROTECTED] Help! My apache httpd server cannot close thread

2008-02-18 Thread 赵志桐
PingBad 写道: On Sunday 17 February 2008 20:02, 赵志桐 wrote: hello everybody My web server got a problem long time. It's cannot close finished httpd thread, i used "ps -e" to check server got a lot of httpd thread like following: 20292 ? 00:00:01 httpd 4912 ? 00:00:00 cronolog 4913 ? 00:00:00

[EMAIL PROTECTED] Mark Tomlinson/IL/HCSC is out of the office.

2008-02-18 Thread tomlinsonm
I will be out of the office starting 02/18/2008 and will not return until 02/19/2008. Please contact Mark Malott for things that require immediate attention. ** The information contained in this communication is confidential, private, proprietary, or otherwise privileged and is inte

Re: [EMAIL PROTECTED] Apache 2.2.8, SNI, SSL and Virtual Hosts

2008-02-18 Thread Norman Khine
OK, by first site I am presuming they get the first site's certificate, in this case the server.crt This is what is happening now! I have a virtual host entry __default with a certificate entry to server.crt What I can't see is how/where I put this message, without taking the user from one sit

Re: [EMAIL PROTECTED] Apache 2.2.8, SNI, SSL and Virtual Hosts

2008-02-18 Thread Krist van Besien
On Feb 18, 2008 11:25 AM, Norman Khine <[EMAIL PROTECTED]> wrote: > For now, the next step is to figure out how to generate the message if > the client does not support SNI. That's easy. If the client does not support SNI, it gets the first site. So the first site is where you put the information

Re: [EMAIL PROTECTED] Apache 2.2.8, SNI, SSL and Virtual Hosts

2008-02-18 Thread Krist van Besien
On Feb 17, 2008 2:37 PM, Norman Khine <[EMAIL PROTECTED]> wrote: > Now my issue is that everything seems to work OK for domain_one.com but > everytime I try to access domain_two.com I get the certificate for the > machine, that is server.ctr and not domain_two.ctr. > > This is not the case in doma

Re: [EMAIL PROTECTED] Apache 2.2.8, SNI, SSL and Virtual Hosts

2008-02-18 Thread Norman Khine
Hello, OK, I have this working on FF. But I would like to now add an entry in the conf file for users who's browsers do not support SNI and was wondering how to generate this message? As per how-to "..If a user's browser does not support SNI then the first SSL site in the configuration file w

[EMAIL PROTECTED] mod_status Kbytes

2008-02-18 Thread john
Hi all I have apache 1.3.37 and I noticed that Total Kbytes value has a limitation, 580 GB approximately. Has anyone else noticed that? - The official User-To-User support forum of the Apache HTTP Server Project. See http://