Re: [us...@httpd] Port-based vhosts

2009-03-10 Thread Charles Sprickman
On Tue, 10 Mar 2009, Krist van Besien wrote: On Tue, Mar 10, 2009 at 2:24 AM, Charles Sprickman wrote: So in short, this does work, until I get into the murky area of keeping the URL consistent in the browser.  For example, let's take "www.foo.com". I always want visitors to see "www.foo.com"

[us...@httpd] 404 when first visit if userdir is mounted using autofs

2009-03-10 Thread Tz-Huan Huang
Hi, In our www server the /home/* is mounted automatically using autofs. When visiting a user's homepage via http://hostname/~user first time, the httpd says ``404 not found'', but after reloading page several times all thing works. Is there any way to avoid this annoying behavior but still usin

Re: [us...@httpd] Re: Tuning worker MPM

2009-03-10 Thread Tadeu Alves
Well if i think the variable "ServerLimit 250" means that the maximum amount of users will be 250 below goes my server configuration about 300 simultaneous connections with apache running about 25m and virtual 300m ServerLimit30 ThreadLimit70 StartServers 20 MaxC

[us...@httpd] Dynamically configuring proxy_balancer

2009-03-10 Thread Udam Dewaraja
Hello, I'm trying to figure out if the Load Balancer provided by Apache for its Web Server allows nodes to be added/removed dynamically. I see that through the balancer_manager page, you can take configured nodes up or down. I also see that any changes to the configuration (adding/remov

[us...@httpd] Re: Tuning worker MPM

2009-03-10 Thread kulbir Saini
Hi, I have applied following changes to worker threads- ServerLimit 250 StartServers 2 MaxClients 6000 MinSpareThreads 75 MaxSpareThreads250 ThreadsPerChild 25 MaxRequestsPerChild 2 I have made above changes and after that i saw the httpd RSS memory show

Re: [us...@httpd] Ask apache to stop listening on only one socket?

2009-03-10 Thread Mohit Anchlia
Ok ..so that's the reason why I started asking this question that if it's possible to have apache listen on a socket and then later tell apache to stop listening only on that port. But I guess that's not possible. On Tue, Mar 10, 2009 at 8:59 AM, Matus UHLAR - fantomas wrote: >> On Tue, Mar 10, 2

[us...@httpd] Why am I getting "Waiting for my_site_name"?

2009-03-10 Thread John Hudak
On Mon, Mar 9, 2009 at 3:39 AM, Krist van Besien wrote: On Mon, Mar 9, 2009 at 2:39 AM, John Hudak wrote: > Could someone suggest where the bottle neck might be and how to fix it?  Is > there anyway to monitor the server to see where things are being blocked?? How many apache processes do you s

Re: [us...@httpd] Ask apache to stop listening on only one socket?

2009-03-10 Thread Matus UHLAR - fantomas
> On Tue, Mar 10, 2009 at 4:20 AM, Matus UHLAR - fantomas > wrote: > > There's bug in apache which appears if more than one listening socket is > > open. It should be fixed in 2.2.12, see bug 42829 at > > https://issues.apache.org/bugzilla/show_bug.cgi?id=42829 > > On 09.03.09 17:47, Mohit Anchli

Re: [us...@httpd] Ask apache to stop listening on only one socket?

2009-03-10 Thread Mohit Anchlia
Thanks ..we are indeed listening on 443 also. How do I tell the version apache? On Tue, Mar 10, 2009 at 4:20 AM, Matus UHLAR - fantomas wrote: > On 09.03.09 17:47, Mohit Anchlia wrote: >> That's what I thought but it doesn't behave that way. I see that it >> still try to take in new sessions and

Re: [us...@httpd] Ask apache to stop listening on only one socket?

2009-03-10 Thread Matus UHLAR - fantomas
On 09.03.09 17:47, Mohit Anchlia wrote: > That's what I thought but it doesn't behave that way. I see that it > still try to take in new sessions and sometimes it just hangs (or > becomes defunct process) even if there are no sessions in progress. There's bug in apache which appears if more than o

[us...@httpd] Error updating cache on Windows

2009-03-10 Thread David Vaughan
I am running Apace 2.2.11 on Windows XP as a caching proxy. An attempt by Apache to refresh a cached header always results in an access denied warning. This is shown in the error log as: cache_storage.c(272): Cached response forisn't fresh. Adding/replacing conditional request headers.

[us...@httpd] Custom Login Form

2009-03-10 Thread Kirk, Laurence
I want to use PHP to write a custom login form , then use ProxyPass to send an authenticated user to another server and keep them logged in . Has anyone else tried this ? Is the only way to pass the authentication from PHP to Apache to create a session in PHP and then use mod_auth_cookie ? Than