> Does anyone else get entries like this in their apache2 access_log:
>
> 127.0.0.1 - - [26/Sep/2007:03:10:08 -0700] "GET /" 400 470
>
> I get a whole slew of them every day.  They always show up in batches
> and each entry in a batch is logged at almost the same second.

I've got this narrowed down to the vhost listening on port 444.  If I
remove "Listen 444" the error completely disappears.  That vhost has a
pretty standard config:

Listen 444
<VirtualHost *:444>
        Include /etc/apache2/vhosts.d/default_vhost.include
        ErrorLog /var/log/apache2/ssl_error_log
        <IfModule mod_log_config.c>
                TransferLog /var/log/apache2/ssl_access_log
        </IfModule>
        SSLEngine on
        SSLCipherSuite
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
        SSLCertificateFile /etc/apache2/ssl/www.mydomain.com.crt
        SSLCertificateKeyFile /etc/apache2/ssl/www.mydomain.com.key
        <Files ~ "\.(cgi|shtml|phtml|php?)$">
                SSLOptions +StdEnvVars
        </Files>
        <IfModule mod_setenvif.c>
                BrowserMatch ".*MSIE.*" \
                nokeepalive ssl-unclean-shutdown \
                downgrade-1.0 force-response-1.0
        </IfModule>
        <IfModule mod_log_config.c>
                CustomLog /var/log/apache2/ssl_request_log \
                "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
        </IfModule>
        <Directory "/path/to/htdocs">
                AuthType Basic
                AuthName "Administration"
                AuthUserFile /path/to/passwords
                Require user myuser
                Options None
                AllowOverride None
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>

This may have started when I upgraded to apache-2.2.  Any ideas?

- Grant
-- 
[EMAIL PROTECTED] mailing list

Reply via email to