Skip to content

Commit

Permalink
fix(ui): Add /health url with basicAuth disabled (#7009)
Browse files Browse the repository at this point in the history
  • Loading branch information
sayeedhussain authored Feb 26, 2024
1 parent 00213f1 commit 11f941d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config-ui/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,10 @@ ${SERVER_CONF}
auth_basic off;
return 200;
}

location /health {
auth_basic off;
return 200;
}

}

0 comments on commit 11f941d

Please sign in to comment.