This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 11f941d8f fix(ui): Add /health url with basicAuth disabled (#7009)
11f941d8f is described below
commit 11f941d8fbd851d0b8fa536f719f2fcd7f4e627a
Author: Sayeed M Hussain <[email protected]>
AuthorDate: Mon Feb 26 09:01:46 2024 +0530
fix(ui): Add /health url with basicAuth disabled (#7009)
---
config-ui/nginx.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/config-ui/nginx.conf b/config-ui/nginx.conf
index 0b9aa2503..249af4530 100644
--- a/config-ui/nginx.conf
+++ b/config-ui/nginx.conf
@@ -68,4 +68,10 @@ ${SERVER_CONF}
auth_basic off;
return 200;
}
+
+ location /health {
+ auth_basic off;
+ return 200;
+ }
+
}