Gentoo Archives: gentoo-user

From: Grant <emailgrant@×××××.com>
To: Gentoo mailing list <gentoo-user@l.g.o>
Subject: [gentoo-user] Re: {OT} Strange apache2 access_log entries
Date: Fri, 28 Sep 2007 14:32:46
Message-Id: 49bf44f10709280717h648bd401ha87122ad360b9ac@mail.gmail.com
In Reply to: [gentoo-user] {OT} Strange apache2 access_log entries by Grant
1 > Does anyone else get entries like this in their apache2 access_log:
2 >
3 > 127.0.0.1 - - [26/Sep/2007:03:10:08 -0700] "GET /" 400 470
4 >
5 > I get a whole slew of them every day. They always show up in batches
6 > and each entry in a batch is logged at almost the same second.
7
8 I've got this narrowed down to the vhost listening on port 444. If I
9 remove "Listen 444" the error completely disappears. That vhost has a
10 pretty standard config:
11
12 Listen 444
13 <VirtualHost *:444>
14 Include /etc/apache2/vhosts.d/default_vhost.include
15 ErrorLog /var/log/apache2/ssl_error_log
16 <IfModule mod_log_config.c>
17 TransferLog /var/log/apache2/ssl_access_log
18 </IfModule>
19 SSLEngine on
20 SSLCipherSuite
21 ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
22 SSLCertificateFile /etc/apache2/ssl/www.mydomain.com.crt
23 SSLCertificateKeyFile /etc/apache2/ssl/www.mydomain.com.key
24 <Files ~ "\.(cgi|shtml|phtml|php?)$">
25 SSLOptions +StdEnvVars
26 </Files>
27 <IfModule mod_setenvif.c>
28 BrowserMatch ".*MSIE.*" \
29 nokeepalive ssl-unclean-shutdown \
30 downgrade-1.0 force-response-1.0
31 </IfModule>
32 <IfModule mod_log_config.c>
33 CustomLog /var/log/apache2/ssl_request_log \
34 "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
35 </IfModule>
36 <Directory "/path/to/htdocs">
37 AuthType Basic
38 AuthName "Administration"
39 AuthUserFile /path/to/passwords
40 Require user myuser
41 Options None
42 AllowOverride None
43 Order allow,deny
44 Allow from all
45 </Directory>
46 </VirtualHost>
47
48 This may have started when I upgraded to apache-2.2. Any ideas?
49
50 - Grant
51 --
52 gentoo-user@g.o mailing list