LoginSignup
1
0

More than 3 years have passed since last update.

nginxだけでコンテンツを返す方法 - Load balancerのhealth checkに

Last updated at Posted at 2020-07-24

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

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