On my server I get a lot of Internal Dummy Connections in the log files. Pages full of
127.0.0.01 – - [date] "OPTIONS * HTTP/1.0" 200 -
So I entered in httpd.conf:
but when I tail my access_log it seems that this did not affect anything (after restarting the httpd process).
am I missing something?
--
127.0.0.01 – - [date] "OPTIONS * HTTP/1.0" 200 -
So I entered in httpd.conf:
Code:
SetEnvIf Remote_Addr "127\.0\.0\.1" loopback
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog /apache/var/logs/access_log common env=!loopback
but when I tail my access_log it seems that this did not affect anything (after restarting the httpd process).
am I missing something?
--