On centos 5.3 x86_64 I can add "traceenable off" to httpd.conf and that works well. however this doesnt seem to work for centos 4.7 i686. Is there a similiar named option on 4.7?
Jerry
On centos 5.3 x86_64 I can add "traceenable off" to httpd.conf and that works well. however this doesnt seem to work for centos 4.7 i686. Is there a similiar named option on 4.7?
Jerry
TraceEnable off is in apache 2.2 which is included in CentOS 5, and it may be in later versions of apache 2.0 but it is not available in the version (2.0.52) that ships with CentOS 4.X.
Barry
On centos 5.3 x86_64 I can add "traceenable off" to httpd.conf and that works well. however this doesnt seem to work for centos 4.7 i686. Is there a similiar named option on 4.7?
Jerry
TraceEnable off is in apache 2.2 which is included in CentOS 5, and it may be in later versions of apache 2.0 but it is not available in the version (2.0.52) that ships with CentOS 4.X.
For Apache 1.3.34 or later, or 2.0.55 or later use traceenable off, for earlier versions use a rewrite rule to break it.
RewriteEngine On RewriteCond %{REQUEST_METHOD} ^TRACE RewriteRule .* - [F]
Patrick Flaherty wrote on Thu, 6 Aug 2009 10:35:55 -0400:
RewriteEngine On RewriteCond %{REQUEST_METHOD} ^TRACE RewriteRule .* - [F]
Or you could simply disallow it ... (among some other methods).
Kai
On Thu, Aug 6, 2009 at 8:53 AM, Jerry Geisgeisj@pagestation.com wrote:
On centos 5.3 x86_64 I can add "traceenable off" to httpd.conf and that works well. however this doesnt seem to work for centos 4.7 i686. Is there a similiar named option on 4.7?
No. That option didn't come out until after the httpd included in RHEL/CentOS 4.
See: https://bugzilla.redhat.com/show_bug.cgi?id=478535