Hey Sluggers!
Ongoing issues with my Fedora Apache box.
A short review:
I noticed the following in my Apache logs:
"CONNECT 1.3.3.7:1337 HTTP/1.0" with a 200 (Success)
What surprised me was that it SUCCEEDED! Seems someone is using my server
to spam. Gah!
Ian suggested I add a <Limit GET POST OPTIONS HEAD> and <LimitExcept GET
POST OPTIONS HEAD>.
So I did and here is a clip from my httpd.conf:
<VirtualHost 192.168.1.150>
DocumentRoot /var/www/html/vhosts/default
ServerAdmin root@localhost
ServerName webrussdev.no-ip.org
<Directory "/var/www/html/vhosts/default/">
Options all
AllowOverride none
</Directory>
<Limit GET POST OPTIONS HEAD>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS HEAD>
Order deny,allow
Deny from all
</LimitExcept>
</VirtualHost>
I added the <Limit> and <LimitExcept> params and now when I try to restart
the httpd service I get an error:
"Starting httpd: Syntax Error on line 886 of /etc/httpd/conf/httpd.conf:
order not allowed here"
Is there some other option I must set?
Perhaps I'm going in the wrong direction should I instead comment out the
line:
LoadModule proxy_module modules/mod_proxy.so
Regards
Russ
-----------------------------------------------------------------------
This list is provided as an unmoderated internet service by Networked
Knowledge Systems (NKS). Views and opinions expressed in messages
posted are those of the author and do not necessarily reflect the
official policy or position of NKS or any of its employees.
This archive was generated by hypermail 2.1.3 : Fri Aug 01 2014 - 17:02:01 EDT