From 18a76b5687f161dda4691f666966ccfa4859144b Mon Sep 17 00:00:00 2001 From: Sokratis Siozos-Drosos Date: Wed, 24 Apr 2019 22:56:08 +0200 Subject: [PATCH] (MODE-11365) Fixed healthcheck. --- configuration/nginx.conf | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/configuration/nginx.conf b/configuration/nginx.conf index cde1e36..0d27067 100644 --- a/configuration/nginx.conf +++ b/configuration/nginx.conf @@ -39,12 +39,8 @@ http { return 301 https://$host$1mono-blue-water$2; } } - } - server { - listen 81; - location / { return 400; } - location = /__isAlive.html { - return 209; - } + location /health { + return 200; + } } }