From 8299570c04763edceab0dc565ea5b02b3d0d927f Mon Sep 17 00:00:00 2001 From: Leah Tacke genannt Unterberg <leah.tgu@pads.rwth-aachen.de> Date: Thu, 31 Oct 2024 12:22:45 +0100 Subject: [PATCH] cleaning up environment variable configuration --- nginx.conf.template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nginx.conf.template b/nginx.conf.template index e3715ca..f5da5b5 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} { -- GitLab