You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by George Hester <he...@hotmail.com> on 2004/03/23 05:13:20 UTC

[users@httpd] Re: server-status

http://machinename.mydomain.com
Forbidden
You don't have permission to access /server-info on this server. 


--------------------------------------------------------------------------------

Apache/1.3.29 Server at MachineName.MyDomain.com Port 7080

ugh!


George Hester
__________________________________
"Shaun T. Erickson"  wrote in message news:405FB771.4070109@smxy.org...
> George Hester wrote:
> 
> > I followed the directions to turn on the Extendedstatus and the server-status as is in the documentation.  Namely uncommented:
> > 
> > <Location /server-info>
> >     SetHandler server-info
> >     Order deny,allow
> >     Deny from all
> >     Allow from .mydomain.com
> > </Location>
> > 
> > and 
> > 
> > Extendedstatus On
> > 
> > But http://www.mydomain.com gives:
> > 
> > Not Found
> > The requested URL /server-status was not found on this server. 
> 
> Try: http://www.mydomain.com/server-info
> 
> -ste
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 
> 


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Re: server-status

Posted by Antonin Karasek <li...@ceskyserver.cz>.
George Hester wrote:

>http://machinename.mydomain.com
>Forbidden
>You don't have permission to access /server-info on this server. 
>
>
>--------------------------------------------------------------------------------
>
>Apache/1.3.29 Server at MachineName.MyDomain.com Port 7080
>
>ugh!
>
>
>George Hester
>__________________________________
>"Shaun T. Erickson"  wrote in message news:405FB771.4070109@smxy.org...
>  
>
>>George Hester wrote:
>>
>>    
>>
>>>I followed the directions to turn on the Extendedstatus and the server-status as is in the documentation.  Namely uncommented:
>>>
>>><Location /server-info>
>>>    SetHandler server-info
>>>    Order deny,allow
>>>    Deny from all
>>>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This is the problem - you must choose some IPs and allow acces...

>>>    Allow from .mydomain.com
>>></Location>
>>>
>>>and 
>>>
>>>Extendedstatus On
>>>
>>>But http://www.mydomain.com gives:
>>>
>>>Not Found
>>>The requested URL /server-status was not found on this server. 
>>>      
>>>
>>Try: http://www.mydomain.com/server-info
>>
>>-ste
>>
>>---------------------------------------------------------------------
>>The official User-To-User support forum of the Apache HTTP Server Project.
>>See <URL:http://httpd.apache.org/userslist.html> for more info.
>>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>>For additional commands, e-mail: users-help@httpd.apache.org
>>
>>
>>    
>>
>
>
>---------------------------------------------------------------------
>The official User-To-User support forum of the Apache HTTP Server Project.
>See <URL:http://httpd.apache.org/userslist.html> for more info.
>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>For additional commands, e-mail: users-help@httpd.apache.org
>
>  
>



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: Re: server-status

Posted by George Hester <he...@hotmail.com>.
Thanks Antonin.  I think I'll try that.  I did get it to work but only after Allow all.

 
George Hester
__________________________________
"Antonin Karasek" wrote in message news:405FE66F.50805@ceskyserver.cz...
> Sory again :o)
> 
> This will work:
>     <Location /server-status>
>         SetHandler server-status
>         Order allow,deny
>         Allow from your.ip.0.0
> #        Deny from all
>     </Location>
> 
> If you uncoment "deny" line, nobody will able to see "server-status", 
> but I think, it can be a bug in Apache, because the order is "allow, deny"
> 
> 
> Antonin Karasek wrote:
> 
> > George Hester wrote:
> >
> >> http://machinename.mydomain.com
> >> Forbidden
> >> You don't have permission to access /server-info on this server.
> >>
> >> --------------------------------------------------------------------------------
> >>
> >> Apache/1.3.29 Server at MachineName.MyDomain.com Port 7080
> >>
> >> ugh!
> >>
> >>
> >> George Hester
> >> __________________________________
> >> "Shaun T. Erickson"  wrote in message news:405FB771.4070109@smxy.org...
> >>  
> >>
> >>> George Hester wrote:
> >>>
> >>>   
> >>>
> >>>> I followed the directions to turn on the Extendedstatus and the 
> >>>> server-status as is in the documentation.  Namely uncommented:
> >>>>
> >>>> <Location /server-info>
> >>>>    SetHandler server-info
> >>>>    Order deny,allow
> >>>>
> > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> > Sory, this is the problem :o) The order is "deny,allow", so the server 
> > first try "from all". It's probably a bug in the config-file...
> >
> >>>>    Deny from all
> >>>>    Allow from .mydomain.com
> >>>> </Location>
> >>>>
> >>>> and
> >>>> Extendedstatus On
> >>>>
> >>>> But http://www.mydomain.com gives:
> >>>>
> >>>> Not Found
> >>>> The requested URL /server-status was not found on this server.     
> >>>
> >>> Try: http://www.mydomain.com/server-info
> >>>
> >>> -ste
> >>>
> >>> ---------------------------------------------------------------------
> >>> The official User-To-User support forum of the Apache HTTP Server 
> >>> Project.
> >>> See <URL:http://httpd.apache.org/userslist.html> for more info.
> >>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> >>> For additional commands, e-mail: users-help@httpd.apache.org
> >>>
> >>>
> >>>   
> >>
> >>
> >>
> >> ---------------------------------------------------------------------
> >> The official User-To-User support forum of the Apache HTTP Server 
> >> Project.
> >> See <URL:http://httpd.apache.org/userslist.html> for more info.
> >> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> >> For additional commands, e-mail: users-help@httpd.apache.org
> >>
> >>  
> >>
> >
> >
> >
> > ---------------------------------------------------------------------
> > The official User-To-User support forum of the Apache HTTP Server 
> > Project.
> > See <URL:http://httpd.apache.org/userslist.html> for more info.
> > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> > For additional commands, e-mail: users-help@httpd.apache.org
> >
> 
> 
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 
> 


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Re: server-status

Posted by Antonin Karasek <li...@ceskyserver.cz>.
Sory again :o)

This will work:
    <Location /server-status>
        SetHandler server-status
        Order allow,deny
        Allow from your.ip.0.0
#        Deny from all
    </Location>

If you uncoment "deny" line, nobody will able to see "server-status", 
but I think, it can be a bug in Apache, because the order is "allow, deny"


Antonin Karasek wrote:

> George Hester wrote:
>
>> http://machinename.mydomain.com
>> Forbidden
>> You don't have permission to access /server-info on this server.
>>
>> --------------------------------------------------------------------------------
>>
>> Apache/1.3.29 Server at MachineName.MyDomain.com Port 7080
>>
>> ugh!
>>
>>
>> George Hester
>> __________________________________
>> "Shaun T. Erickson"  wrote in message news:405FB771.4070109@smxy.org...
>>  
>>
>>> George Hester wrote:
>>>
>>>   
>>>
>>>> I followed the directions to turn on the Extendedstatus and the 
>>>> server-status as is in the documentation.  Namely uncommented:
>>>>
>>>> <Location /server-info>
>>>>    SetHandler server-info
>>>>    Order deny,allow
>>>>
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Sory, this is the problem :o) The order is "deny,allow", so the server 
> first try "from all". It's probably a bug in the config-file...
>
>>>>    Deny from all
>>>>    Allow from .mydomain.com
>>>> </Location>
>>>>
>>>> and
>>>> Extendedstatus On
>>>>
>>>> But http://www.mydomain.com gives:
>>>>
>>>> Not Found
>>>> The requested URL /server-status was not found on this server.     
>>>
>>> Try: http://www.mydomain.com/server-info
>>>
>>> -ste
>>>
>>> ---------------------------------------------------------------------
>>> The official User-To-User support forum of the Apache HTTP Server 
>>> Project.
>>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>>> For additional commands, e-mail: users-help@httpd.apache.org
>>>
>>>
>>>   
>>
>>
>>
>> ---------------------------------------------------------------------
>> The official User-To-User support forum of the Apache HTTP Server 
>> Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>> For additional commands, e-mail: users-help@httpd.apache.org
>>
>>  
>>
>
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server 
> Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Re: server-status

Posted by Antonin Karasek <li...@ceskyserver.cz>.
George Hester wrote:

>http://machinename.mydomain.com
>Forbidden
>You don't have permission to access /server-info on this server. 
>
>
>--------------------------------------------------------------------------------
>
>Apache/1.3.29 Server at MachineName.MyDomain.com Port 7080
>
>ugh!
>
>
>George Hester
>__________________________________
>"Shaun T. Erickson"  wrote in message news:405FB771.4070109@smxy.org...
>  
>
>>George Hester wrote:
>>
>>    
>>
>>>I followed the directions to turn on the Extendedstatus and the server-status as is in the documentation.  Namely uncommented:
>>>
>>><Location /server-info>
>>>    SetHandler server-info
>>>    Order deny,allow
>>>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Sory, this is the problem :o) The order is "deny,allow", so the server 
first try "from all". It's probably a bug in the config-file...

>>>    Deny from all
>>>    Allow from .mydomain.com
>>></Location>
>>>
>>>and 
>>>
>>>Extendedstatus On
>>>
>>>But http://www.mydomain.com gives:
>>>
>>>Not Found
>>>The requested URL /server-status was not found on this server. 
>>>      
>>>
>>Try: http://www.mydomain.com/server-info
>>
>>-ste
>>
>>---------------------------------------------------------------------
>>The official User-To-User support forum of the Apache HTTP Server Project.
>>See <URL:http://httpd.apache.org/userslist.html> for more info.
>>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>>For additional commands, e-mail: users-help@httpd.apache.org
>>
>>
>>    
>>
>
>
>---------------------------------------------------------------------
>The official User-To-User support forum of the Apache HTTP Server Project.
>See <URL:http://httpd.apache.org/userslist.html> for more info.
>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>For additional commands, e-mail: users-help@httpd.apache.org
>
>  
>



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org