RE: [us...@httpd] default site

2009-06-09 Thread Fred Zinsli
Thank you The ServerAlias directive worked a treat. As Apache 2.2 uses separate conf files for each vhost I set the www conf on all domains to appear at the end of the file order and placed a wildcard ServerAlias directive after the ServerName directive. serverName www.shooter.co.nz ServerAlia

[us...@httpd] Re: Configuring multiple instance of apache on solaris

2009-06-09 Thread Sayed Wali
I figure it out... Thank you Boyle Owen for your help and suggestions! Basically, one of the "Includes" in the instance.conf had the PidFile defined in it... For example: In My instance1.conf: # Server-pool management (MPM specific) Include /opt/apache/code/apache-conf/extr

Re: [us...@httpd] 503 status seems to get cached - how do I disable caching?

2009-06-09 Thread Jenny Brown
Ok, I tried testing for the hung ajp sockets concept, and got some other useful info too. Problem still remains. Procedure: I stopped all services that make requests to this dev web server (so I am the only user on). I stopped both tomcat and apache, and make sure all processes had exited. (Goal-

[us...@httpd] mod_disk_cache - Temporary files when 32000 subdirs limit is reached

2009-06-09 Thread Nuno Fernandes
Hi, I'm using httpd.x86_64-2.2.3-22.el5.centos to serve the content of a backend web server. I'm using mod_proxy + mod_disk_cache to cache the content (only public images) to be served. CacheRoot "/var/cache/httpd/mod_proxy" CacheEnable disk /i/i CacheDirLevels 5 CacheDirLength

Re: [us...@httpd] Apache APR Crash with Trac

2009-06-09 Thread David Headley
Aha - good find. I checked and the Apache2.2\bin folder contains libapr-1.dll, and it is version 1.3.3.0. Apparently there is another libapr.dll file in the Python/Lib folder for libsvn that is version 0.9.17.0. That file was installed by some of the Trac Python packages - there must be a versio

Re: [us...@httpd] Apache APR Crash with Trac

2009-06-09 Thread Nick Kew
David Headley wrote: Faulting application httpd.exe, version 2.2.11.0, time stamp 0x493f5d44, faulting module libapr.dll, version 0.9.17.0, time stamp 0x4878c068, Something very wrong there. Apache 2.2.x (along with other APR apps such as SVN) works with APR 1.x. The old APR 0.9.x indicated

Re: [us...@httpd] Reverse Proxy: Max-Forwards has reached zero - proxy loop?

2009-06-09 Thread ml ml
Hi Nick, it still does not work if i use: ServerName webmail.example.com SSLEngine on SSLCertificateFile /usr/local/apache/conf/webmail.example.cert SSLCertificateKeyFile /usr/local/apache/conf/webmail.example.key SSLProxyEngine on RewriteEngine on RewriteRule ^/$ /exchange [R] ProxyP

Re: [us...@httpd] 503 status seems to get cached - how do I disable caching?

2009-06-09 Thread Jenny Brown
Regarding the possibility of hung AJP sockets: That's an interesting question. I have a dev environment where I could test it out, though it'll be a while before I get an opportunity to do so. If I can confirm that the absence of pending requests makes the response time faster, I'll let you know

Re: [us...@httpd] default site

2009-06-09 Thread André Warnier
Eric Covener wrote: On Tue, Jun 9, 2009 at 4:11 AM, Matus UHLAR - fantomas wrote: Boyle Owen wrote: ... Amazing how this can get confused quickly, no ? ;-) My version : -- begin of main configuration file (say httpd.conf) --- directives.. more directives... ... Listen 80 ... NameVirtualHost

[us...@httpd] Apache APR Crash with Trac

2009-06-09 Thread David Headley
I've attempted to work this issue through the Trac mailing list, but it now appears to be an issue with the Apache APR library. Here's the background: Configuration: Apache 2.2.11 with mod_wsgi Windows Small Business Server 2008 Trac 0.11.4 SVN 1.5.6 (r36142) Python 2.5.4 I'm installing Tra

Re: [us...@httpd] Apache 1.3.41 child processes crashing frequently.

2009-06-09 Thread André Warnier
Davide Bianchi wrote: Prathima Dandapani -X (pdandapa - HCL at Cisco) wrote: .. And if you go through all the trouble of compiling all that stuff and installing it new, why do you not use the Apache 2.x latest stuff, instead of Apache 1.3 ? (not saying 1.3.x does not work, but the basic archit

[us...@httpd] help with mod_authnz_ldap and require ldap-group

2009-06-09 Thread Paul Miles
Hello, Please forgive me if this is the wrong place to post questions about mod_authnz_ldap, but I've been struggling with this particularly issue for a few days now ... I have a (working) openldap server which contains a number of user accounts. see extract below : dn: uid=pmiles,ou=people,d

Re: [us...@httpd] ForceLanguagePriority not giving 300 response

2009-06-09 Thread Julien Pauli
On Tue, Jun 9, 2009 at 10:12 AM, Nick Kew wrote: > On 8 Jun 2009, at 21:56, Julien Pauli wrote: > > Hi httpd users :) >> >> The documentation says : >> > > A URL for what you're quoting would help here. http://httpd.apache.org/docs/2.2/mod/mod_negotiation.html#forcelanguagepriority > > > So

Re: [us...@httpd] Configuring multiple instance of apache on solaris

2009-06-09 Thread Sayed Wali
On Tue, Jun 9, 2009 at 3:22 AM, Boyle Owen wrote: >> -Original Message- >> From: Sayed Wali [mailto:sayed.w...@gmail.com] >> Sent: Monday, June 08, 2009 11:54 PM >> To: users@httpd.apache.org >> Subject: [us...@httpd] Configuring multiple instance of >> apache on solaris >> >> Hi , >> >> I

Re: [us...@httpd] default site

2009-06-09 Thread Eric Covener
On Tue, Jun 9, 2009 at 4:11 AM, Matus UHLAR - fantomas wrote: >> Boyle Owen wrote: >> > However, a request with a domain-name that *doesn't* match a VH will be >> > served outside the VHs by whatever default rules you have (look for >> > "ServerName" and "DocumentRoot" outside any VH). > > On 09.0

Re: [us...@httpd] Reverse Proxy: Max-Forwards has reached zero - proxy loop?

2009-06-09 Thread Nick Kew
On Tue, 9 Jun 2009 10:30:57 +0200 ml ml wrote: > Hello List, > > i am trying to access a M$ Exchange Server via a Apache Reverse Proxy. > But i am getting the error: Max-Forwards has reached zero - proxy > loop? That's because you have a loop. In fact, two: > > ServerName webmail.example.c

[us...@httpd] Reverse Proxy: Max-Forwards has reached zero - proxy loop?

2009-06-09 Thread ml ml
Hello List, i am trying to access a M$ Exchange Server via a Apache Reverse Proxy. But i am getting the error: Max-Forwards has reached zero - proxy loop? I already checked, if some name resolved to itself (which WAS the case and i fixed it), but it still does not work. Here is the setup and con

Re: [us...@httpd] ForceLanguagePriority not giving 300 response

2009-06-09 Thread Nick Kew
On 8 Jun 2009, at 21:56, Julien Pauli wrote: Hi httpd users :) The documentation says : A URL for what you're quoting would help here. So if I do want a 300 response, I need to put ForceLanguagePriority None (following the documentation syntax). ... making it easier to check what exactly

Re: [us...@httpd] default site

2009-06-09 Thread Matus UHLAR - fantomas
> Boyle Owen wrote: > > However, a request with a domain-name that *doesn't* match a VH will be > > served outside the VHs by whatever default rules you have (look for > > "ServerName" and "DocumentRoot" outside any VH). On 09.06.09 09:14, Davide Bianchi wrote: > Actually no. If the request doesn'

Re: [us...@httpd] Apache 1.3.41 child processes crashing frequently.

2009-06-09 Thread Davide Bianchi
Prathima Dandapani -X (pdandapa - HCL at Cisco) wrote: > Davide, > > Thanks for your reply.I am linking mod_perl and mod_jk to Apache > binary. If you don't specifically need version 1.3 I suggest you update to 2.x, there have been a lot of improvement in the code between the two version

Re: [us...@httpd] Apache 1.3.41 child processes crashing frequently.

2009-06-09 Thread Nick Kew
On 9 Jun 2009, at 08:55, Prathima Dandapani -X ((pdandapa - HCL at Cisco)) wrote: Davide, Thanks for your reply.I am linking mod_perl and mod_jk to Apache binary. Why are you using a 1998 apache version? Apache 1.x + SSL is messy. Read about EAPI in the docs for why it's seg

RE: [us...@httpd] Apache 1.3.41 child processes crashing frequently.

2009-06-09 Thread Prathima Dandapani -X (pdandapa - HCL at Cisco)
Davide, Thanks for your reply.I am linking mod_perl and mod_jk to Apache binary. Thanks and Regards, Prathima. -Original Message- From: Davide Bianchi [mailto:dav...@walterisookeensufferukker.nl] Sent: Tuesday, June 09, 2009 12:26 PM To: users@httpd.apache.org Subject: Re: [us

RE: [us...@httpd] default site

2009-06-09 Thread Boyle Owen
> -Original Message- > From: Davide Bianchi [mailto:dav...@walterisookeensufferukker.nl] > > Actually no. If the request doesn't match any Virtual Hosts, > it will be > served by the first vhost defined or by the one defined with the > _default_ keyword. Quite right. Once you start usin

RE: [us...@httpd] Configuring multiple instance of apache on solaris

2009-06-09 Thread Boyle Owen
> -Original Message- > From: Sayed Wali [mailto:sayed.w...@gmail.com] > Sent: Monday, June 08, 2009 11:54 PM > To: users@httpd.apache.org > Subject: [us...@httpd] Configuring multiple instance of > apache on solaris > > Hi , > > I have a problem that I am hoping one you have seen before

Re: [us...@httpd] default site

2009-06-09 Thread Davide Bianchi
Boyle Owen wrote: > However, a request with a domain-name that *doesn't* match a VH will be > served outside the VHs by whatever default rules you have (look for > "ServerName" and "DocumentRoot" outside any VH). Actually no. If the request doesn't match any Virtual Hosts, it will be served by the

RE: [us...@httpd] default site

2009-06-09 Thread Boyle Owen
> -Original Message- > From: Fred Zinsli [mailto:fred.zin...@shooter.co.nz] > Sent: Tuesday, June 09, 2009 3:12 AM > To: users@httpd.apache.org > Subject: [us...@httpd] default site > > Hello all > > I am sure this has been asked, but I couldn't find the answer I was > looking for. > >