Re: [EMAIL PROTECTED] Any url will revert to the document root

2008-08-20 Thread Y
André, thank you for pointing me in the right direction. The problem was that my ip address is pointing to a different name on the local dns server of my provider. The behaviour is correct when I use that name instead. Would URL rewritting be the way to go to temporarly correct this (before th

[EMAIL PROTECTED] Article: Howto build Apache2 on Mac OS X Leopard

2008-08-20 Thread Ben Jakbot
hi I just updated my article on how to compile and setup apache2 from the sources up on mac os x leopard. http://manuals.jakbot.com/doku.php?id=os:macosx:setup:apache2-macosx ben - The official User-To-User support forum of the

Re: [EMAIL PROTECTED] mod_perl and vhost configs

2008-08-20 Thread Peter Milanese
>It looks like "$include" is getting the value "Include" without aninclude file >name. >The reason is very simple. You forgot to declare >$include as local. You're not kidding! It is very temperamental. I resolved the issues, and this portion appears to be working well. I'll attach the resu

[EMAIL PROTECTED] mod_auth_digest HUGE on 64bit system

2008-08-20 Thread Matus UHLAR - fantomas
Hello, I've noticed that when built on 64bit gentoo, the mod_auth_digest is just HUGE. Has anyone experienced this problem? # ls -l /usr/lib64/apache2/modules/mod_auth_digest.so -rwxr-xr-x 1 root root 2124152 Aug 20 13:30 /usr/lib64/apache2/modules/mod_auth_digest.so while on 32bit system: % l

Re: [EMAIL PROTECTED] Configuring mod_proxy_balancer with failover to hot standby

2008-08-20 Thread Rob Stewart
> This seems a little messy. Is there any way to signify from the > application server, via response headers, to say "I'm bust, please stop > using me"? > This isn't what you're asking for, but it might be useful to you, so here goes... If you go to the '/balancer' URL for your balancer manag

Re: [EMAIL PROTECTED] Apache 2.2.8 + ProxyErrorOverride errors

2008-08-20 Thread Richard de Vries
Hey Nick, thank you for your response. Yeah, I found a document describing the changes you guys made .. if I am not mistaking it stated that HTTP Status Codes in the 200 and 300 series are now excluded from the ErrorOverride; thus only override 40x and 50x status codes now. Unfortunately default

[EMAIL PROTECTED] unexpected behaviour of suexec dissolving users / uid

2008-08-20 Thread Makrohard
Hello List. I'm trying to set up multiple web-applications on a debian etch operating system using apache2 in combination with mod_fcgid and suexec. The versions are the ones contained in the up-to-date debian etch distribution. I used apt to install all components. Each application (=vhost)

Re: [EMAIL PROTECTED] mod_perl and vhost configs

2008-08-20 Thread Krist van Besien
On Wed, Aug 20, 2008 at 14:42, Peter Milanese <[EMAIL PROTECTED]> wrote: > $parms->add_config() has failed: Include takes one argument, Name of the > config > file to be included at > /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/Apache2/PerlSections.pm > line 215.\n It looks like "

Re: [EMAIL PROTECTED] mod_perl and vhost configs

2008-08-20 Thread Peter Milanese
Thanks Krist- >So write your perl sections as if you had "use strict;", and declare >all your variables local using "my", unless you want to directly pass >something to apache. >So use: >my $s = Apache2::ServerUtil->server; >You need to do this each time you introduce a local variable, eg: >my

[EMAIL PROTECTED] Configuring mod_proxy_balancer with failover to hot standby

2008-08-20 Thread Tom Evans
Hi all. I'm trying to setup a reverse proxy with failover to a hot standby using mod_proxy_balancer. This works perfectly when all application servers are functioning correctly, and the reverse proxy correctly fails over to the hot standby if the http service on the primary application server fail

Re: [EMAIL PROTECTED] Apache 2.2.8 + ProxyErrorOverride errors

2008-08-20 Thread Nick Kew
Richard de Vries wrote: > (all on one line, so chopped) We recently made some fixes to ProxyErrorOverride, but I don't recollect the details. Googling the dev list would no doubt find it. In the absence of a better solution, you could perhaps default to serving the proxy's error pages, but over

Re: [EMAIL PROTECTED] mod_perl and vhost configs

2008-08-20 Thread Krist van Besien
On Tue, Aug 19, 2008 at 17:58, Peter Milanese <[EMAIL PROTECTED]> wrote: > Not so sure where this break is, or even if my config is done correctly. It > seems to be pretty basic perl, of which I'm pretty veteran. Does anyone know > what's going on ? Here's the code: One thing I found out when imp

Re: [EMAIL PROTECTED] Any url will revert to the document root

2008-08-20 Thread André Warnier
Luc Landreville wrote: Greetings; I host a website using apache on CentOS Linux. I am experiencing the fllowing problem: Any file name added after the domain name in the address field of a browser is ignored and the site's home page is displayed: If I type http://www.mydomain.com/pt/index.ht

Re: [EMAIL PROTECTED] mod_perl and vhost configs

2008-08-20 Thread Torsten Foertsch
On Tue 19 Aug 2008, Peter Milanese wrote: > >     use Sys::Hostname; >     use File::Basename; >     use Apache2::ServerUtil; >     $s = Apache2::ServerUtil->server; Try to add use Apache2::ServerRec (); somewhere before this last line. Torsten -- Need professional mod_perl support? Just hi