fix: healthcheck always exit 0 (#2250)

pull/2252/head
James Elliott 2021-08-05 21:44:49 +10:00 committed by GitHub
parent 80adbf095e
commit c789955a88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
#!/bin/sh
source /app/.healthcheck.env
if [ -z "${X_AUTHELIA_HEALTHCHECK}" ]; then
exit 0
fi
source /app/.healthcheck.env
if [ -z "${X_AUTHELIA_HEALTHCHECK_SCHEME}" ]; then
X_AUTHELIA_HEALTHCHECK_SCHEME=http
fi