You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Fernando Reuter Wendt <fe...@admijui.unijui.tche.br> on 2002/12/04 19:41:36 UTC

[users@httpd] Enable server-status and server-info

Hi,

I´m not getting to enable http://localhost/server-status and
http://localhost/server-info to work. I´m using Apache 1.3.27 at one Win2k
system.

I´ve ajusted the httpd.conf, removing the '#' from the archive as bellow:

<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from unijui.tche.br
</Location>

<Location /server-info>
    SetHandler server-info
    Order deny,allow
    Deny from all
    Allow from unijui.tche.br
</Location>

I just tested and it failed. It points me the forbbiden error.

So, i ajusted the file again, at the 'LoadModule status_module
modules/mod_status.so', 'LoadModule info_module modules/mod_info.so',
'AddModule mod_status.c' and 'AddModule mod_info.c'

Nothing yet. Someone can help me to handle this?

Thank you,

+---------------------
 Fernando A. R. Wendt
 < Webmaster UNIJUÍ >

+---------------------
 Fernando A. R. Wendt
 < Webmaster UNIJUÍ >

---------------------------------------------------------------------
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] Enable server-status and server-info

Posted by "Jack L. Stone" <ja...@sage-one.net>.
At 02:14 PM 12.4.2002 -0500, Joshua Slive wrote:
>
>On Wed, 4 Dec 2002, Fernando Reuter Wendt wrote:
>
>> Hi,
>>
>> I´m not getting to enable http://localhost/server-status and
>> http://localhost/server-info to work. I´m using Apache 1.3.27 at one Win2k
>> system.
>>
>>     Allow from unijui.tche.br
>

Try a "." in front of the domain:
Allow from .unijui.tche.br

Also, this Allow from .unijui.tche.br 127.0.0.1

....is the next set of syntax.... and any other IPs after that on the same
line



Best regards,
Jack L. Stone,
Administrator

SageOne Net
http://www.sage-one.net
jackstone@sage-one.net

---------------------------------------------------------------------
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] Enable server-status and server-info

Posted by Joshua Slive <jo...@slive.ca>.
On Wed, 4 Dec 2002, Fernando Reuter Wendt wrote:

> Hi,
>
> I´m not getting to enable http://localhost/server-status and
> http://localhost/server-info to work. I´m using Apache 1.3.27 at one Win2k
> system.
>
>     Allow from unijui.tche.br

Look in the access_log to see what location apache thinks you are coming
from, and then add that to the Allow line.  It is very likely something
like "localhost" or "localhost.localdomain" or "127.0.0.1".  Apache has no
way to know that those are in unijui.tche.br if you access the service
over the loopback.

Joshua.

---------------------------------------------------------------------
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