logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Server Status unavailable
Author
saryx



Joined: 06 Jan 2014
Posts: 4
Location: Israel, Herzliya

PostPosted: Tue 14 Jan '14 1:17    Post subject: Server Status unavailable Reply with quote

Hey guys, thanks in advance;

Issue: Unable to access simple server status reports though \server-status.(chrome could not find..)

Environment:
Home Lab; Win8(dont ask..)
apache 2.0(httpd-2.0.64-win32-x86-no_ssl)
*Fire down, router rules unrestrictive

set in httpd:
...
<Location /server-status>
SetHandler server-status

Order Deny,Allow
Deny from all
Allow from all
</Location>
...

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


Advanced mods, require compilation to standing installation of apache but the server status is said to be precompiled with the version.

Please advice, correct all and any verbal or terminology eers or anything missing that I need to bring you guys to help out.


cheers!
-saryx
Back to top
jraute



Joined: 13 Sep 2013
Posts: 188
Location: Rheinland, Germany

PostPosted: Tue 14 Jan '14 12:20    Post subject: Reply with quote

Hello Saryx,

pls change the "order deny,allow" to

Order allow,deny
Allow from all

Greets
JR
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7371
Location: Germany, Next to Hamburg

PostPosted: Tue 14 Jan '14 12:56    Post subject: Reply with quote

You should no longer use Apache 2.0, but upgrade.

P.S.: Please send some warmth from Herzliya to Hamburg Wink
Back to top
saryx



Joined: 06 Jan 2014
Posts: 4
Location: Israel, Herzliya

PostPosted: Sat 18 Jan '14 2:40    Post subject: rere Reply with quote

jraute wrote:

pls change the "order deny,allow" to

Order allow,deny
Allow from all

Greets
JR


Changed to:
#<Location /server-status>
# SetHandler server-status
# Order allow,deny
# Allow from all
# Deny from all
#</Location>

still, 404, not found. Did I mess anything else?
Full httpd documentation here:
http://pastebin.com/k0ix5LXu

thanksAbunch
-saryx

James Blond wrote:

You should no longer use Apache 2.0, but upgrade.

P.S.: Please send some warmth from Herzliya to Hamburg Wink


What version should I use, basic study and testing purposes, need to be as friendly to install, run and configure as possible.
On the other hand, if no real serious difference than maybe I should roll with up to date production servers and win on the relevancy. What you say?:]

And I wish I had some, I dont know how but I manage to freeze even with 20*c hh. Snowing much?

-Much Appreciation
saryx
Back to top
jraute



Joined: 13 Sep 2013
Posts: 188
Location: Rheinland, Germany

PostPosted: Sat 18 Jan '14 9:38    Post subject: Reply with quote

Pls delete the "#" in front of the lines and activate the module mod_status, yours is deactivated!
Back to top
saryx



Joined: 06 Jan 2014
Posts: 4
Location: Israel, Herzliya

PostPosted: Tue 21 Jan '14 15:44    Post subject: Reply with quote

jraute wrote:
Pls delete the "#" in front of the lines and activate the module mod_status, yours is deactivated!


Thanks, changed to:
<Location /server-status>
SetHandler server-status
Order allow,deny
Allow from all
Deny from all
</Location>

No go, I get:
Forbidden
You dont have permission to access /server-status on this server.

Where else url\resources are restricted on such a besic server version\setting? Maybe I am affected by some apache settings outside of the httpd?

Have any idea about the TCP\Syn flood thing by chance?(the other post)

Thank you,
-Saryx
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7371
Location: Germany, Next to Hamburg

PostPosted: Tue 21 Jan '14 16:06    Post subject: Reply with quote

change it to


<Location /server-status>
SetHandler server-status
Order allow,deny
Allow from all
Deny from none
</Location>
Back to top


Reply to topic   Topic: Server Status unavailable View previous topic :: View next topic
Post new topic   Forum Index -> Apache