Apache 2.2
am 05.12.2009 14:18:15 von Jos Chrispijn
Just migrated to apache-2.2.13 and already ran into this problem:
myserver# apachectl fullstatus
Forbidden - You don't have permission to access /server-status on this
server.
Even getting the same error when logged on as 'root'
Can you tell me what is causing this? Thanks.
Jos
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See 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: Apache 2.2
am 05.12.2009 14:29:04 von Rich Bowen
On Dec 5, 2009, at 08:18 , Jos Chrispijn wrote:
> Just migrated to apache-2.2.13 and already ran into this problem:
>
> myserver# apachectl fullstatus
> Forbidden - You don't have permission to access /server-status on
> this server.
>
> Even getting the same error when logged on as 'root'
>
> Can you tell me what is causing this? Thanks.
Being logged on as root makes no difference, because this is a HTTP
request to the server.
What does the error log say? You're probably lacking an "allow from"
directive somewhere. See: http://wiki.apache.org/httpd/ClientDeniedByServerConfigurati on
and
--
Rich Bowen
rbowen@rcbowen.com
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See 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: Apache 2.2
am 05.12.2009 14:57:51 von Daniel Reinhardt
> Just migrated to apache-2.2.13 and already ran into this problem:
>
> myserver# apachectl fullstatus
> Forbidden - You don't have permission to access /server-status on this
> server.
>
> Even getting the same error when logged on as 'root'
>
> Can you tell me what is causing this? Thanks.
> Jos
Check the mod-info.conf file to see if you have localhost in the allowed
field.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See 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: Apache 2.2
am 05.12.2009 17:30:16 von Jos Chrispijn
--------------060102030007050502070009
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Rich Bowen wrote:
> Being logged on as root makes no difference, because this is a HTTP
> request to the server.
>
> What does the error log say? You're probably lacking an "allow from"
> directive somewhere. See:
> http://wiki.apache.org/httpd/ClientDeniedByServerConfigurati on and
Just found out (reading some stuff about directives) that in the
standard httpd.conf file there is a section:
# First, we configure the "default" to be a very restrictive set of
features.
#
AllowOverride None
Order deny,allow
Deny from all
which I hashed out immediately to see what would happen. After that, I
browsed to one of my sites and got response, but only .php code
contents. So I knew I was on the right way. Then I noticed that in my
httpd.conf there was a line saying:
*LoadModule php5_module libexec/apache22/libphp5.so
*
but there wasn't a accompanied AddType application directive! So I added
in the an extra line, saying
*AddType application/x-httpd-php .php*
After restarting Apache22, it all works again without problems. And even
faster than it did before!
I am quite pleased to see that the httpd.conf is considerably shorter
than the Apache1.3x was. Mine is so compact now that you nearly wouldn't
believe it would work.
So overall experience for an Apache nub like me: if you can, do use it.
Will make your life much easier when it runs finally :-)
Thanks,
Jos Chrispijn
--------------060102030007050502070009
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Rich Bowen wrote:
type="cite">Being logged on as root makes no difference, because this
is a HTTP request to the server.
What does the error log say? You're probably lacking an "allow from"
directive somewhere. See:
href="http://wiki.apache.org/httpd/ClientDeniedByServerConfi guration">http://wiki.apache.org/httpd/ClientDeniedByServerC onfiguration and
Just found out (reading some stuff about directives) that in the
standard httpd.conf file there is a section:
# First, we configure the "default" to be a very restrictive set of
features.
#
<Directory />
AllowOverride None
Order deny,allow
Deny from all
</Directory>
which I hashed out immediately to see what would happen. After that, I
browsed to one of my sites and got response, but only .php code
contents. So I knew I was on the right way. Then I noticed that in my
httpd.conf there was a line saying:
LoadModule php5_module libexec/apache22/libphp5.so
but there wasn't a accompanied AddType application directive! So I
added in the <IfModule mime_module> an extra line, saying
AddType application/x-httpd-php .php
After restarting Apache22, it all works again without problems. And
even faster than it did before!
I am quite pleased to see that the httpd.conf is considerably shorter
than the Apache1.3x was. Mine is so compact now that you nearly
wouldn't believe it would work.
So overall experience for an Apache nub like me: if you can, do use it.
Will make your life much easier when it runs finally :-)
Thanks,
Jos Chrispijn
--------------060102030007050502070009--