diff --git a/nginx.conf.template b/nginx.conf.template
index e3715caaab05a176acd8f177cdddedd63e3f6f15..f5da5b53b3cb6b172d8f76058713c3068b264eb7 100644
--- a/nginx.conf.template
+++ b/nginx.conf.template
@@ -11,10 +11,10 @@ server {
         try_files $uri $uri/ /index.html =404;
     }
 
-    location = /health {
-            access_log off;
-            add_header 'Content-Type' 'application/json';
-            return 200 '{"status":"healthy"}';
+    location /health {
+        access_log off;
+        add_header 'Content-Type' 'application/json';
+        return 200 '{"status":"healthy"}';
     }
 
     location ${API_PREFIX} {