Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #24 from tlisonbee/health-check-update
Browse files Browse the repository at this point in the history
Health-check should give a response body
  • Loading branch information
tlisonbee authored Mar 18, 2017
2 parents 73e1b3a + 845e587 commit 9dc761c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

group=com.nike
artifactId=cerberus-lifecycle-cli
version=0.15.1
version=0.16.0
3 changes: 2 additions & 1 deletion src/main/resources/templates/site-gateway.conf.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ server {
# Simple health response
location = /sys/health {
access_log off;
return 200;
add_header Content-Type text/plain;
return 200 "Gateway is Healthy";
}

location /robots.txt {
Expand Down

0 comments on commit 9dc761c

Please sign in to comment.