health checkをloggingしたくない、
リバプロとしてnginx使っててweb serverまで行かせたくない、などのときに
server {
listen 80 default_server;
location /nginx-health {
access_log off;
return 200 "healthy\n";
}
}
reference
https://github.com/nginxinc/kubernetes-ingress/issues/90
nginx posts
nginxのstatusを表示するモジュール /nginx_status
https://qiita.com/uturned0/items/b4eb6839d75050933c7f
nginxにモジュールを追加できるDockerfile
https://qiita.com/uturned0/items/3a0a7cb971edac40b11e
nginxリバプロで header を cookieに書き込む方法
https://qiita.com/uturned0/items/112b8faba403bd534d5c
nginxリバプロで、requestに入っているheaderをlogに出す方法
https://qiita.com/uturned0/items/31162eeb03af05c7dc4b
nginxだけでコンテンツを返す方法 - Load balancerのhealth checkに
https://qiita.com/uturned0/items/a8bcca111b75c5055ed9