ELB経由でwebサーバー公開するときにapacheのログにELBのヘルスチェックが一緒に入ってしまう。
なのでログを分ける。
ServerName example.com
<VirtualHost *:80>
Servername example.com
DocumentRoot /var/www/example
SetEnvIf User-Agent "ELB-HealthChecker.*" nolog
SetEnvIf User-Agent "ELB-HealthChecker.*" elb
ErrorLog /var/log/httpd/example-error_log
CustomLog logs/example-access_log combined env=!nolog
CustomLog logs/elb_HelthCheck_log combined env=elb
<Directory "/var/www/example">
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>