LoginSignup
3
1

More than 5 years have passed since last update.

AWS apacheのアクセスログとELBのヘルスチェックのログを分ける

Posted at

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>
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1