The following reply was made to PR general/1493; it has been noted by GNATS.

From: Marc Slemko <[EMAIL PROTECTED]>
To: "Auteria Wally Winzer Jr." <[EMAIL PROTECTED]>
Cc: Apache bugs database <[EMAIL PROTECTED]>
Subject: Re: general/1493: Problems with Location in access.conf (Server Status)
Date: Sun, 30 Nov 1997 14:29:55 -0700 (MST)

 On Sun, 30 Nov 1997, Auteria Wally Winzer Jr. wrote:
 
 > I've attached a copy of access.conf.
 
 [...]
 
        <Directory /usr/local/apache-1.2.4/cgi-bin>
        AllowOverride None
        Options None
        #</Directory>
  
        # Allow server status reports, with the URL of
        http://servername/server-status
        # Change the ".your_domain.com" to match your domain to enable.
  
        <Location /status>
        SetHandler server-status
        order deny,allow
        deny from all
        allow from .champusa.com
        </Location>
 
 As I said, be sure you are closing all your Directory containers.
 You commented out the </Directory> for your cgi-bin directory.  That
 means the <Directory> that is opened is never closed.  You can't have
 Locations inside Directories, so it is invalid.
 
 Remove the comment from your </Directory> and it should work fine.
 

Reply via email to