The following reply was made to PR mod_alias/1907; it has been noted by GNATS.
From: Dean Gaudet <[EMAIL PROTECTED]>
To: Andreas Jung <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: Re: mod_alias/1907: ScriptAlias and Non-IP VirtualHost
Date: Mon, 2 Mar 1998 23:43:31 -0800 (PST)
Can you verify that it is in fact recognizing the virtual host that you're
having the cgi-bin trouble with?
And you're sure none of your other config files have ScriptAlias /cgi-bin/
directives?
For example, the following config works as expected for me. So there's
definately something more in your config.
Dean
Port 8080
ServerRoot /home/dgaudet/ap/apachen
DocumentRoot /home/dgaudet/ap/apachen/htdocs
MaxClients 5
StartServers 5
MinSpareServers 1
MaxSpareServers 2
MaxRequestsPerChild 100000
ResourceConfig /dev/null
AccessConfig /dev/null
ErrorLog logs/error_log
<Directory />
AllowOverride none
Options FollowSymLinks ExecCGI
</Directory>
NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
ServerName asdf
ScriptAlias /cgi-bin/ /does/not/exist/
</VirtualHost>
<VirtualHost 127.0.0.1>
ServerName ffff
ScriptAlias /cgi-bin/ /not/here/either/
</VirtualHost>