diff --git a/Containers/apache/healthcheck.sh b/Containers/apache/healthcheck.sh index 436091b2..835ec4d4 100644 --- a/Containers/apache/healthcheck.sh +++ b/Containers/apache/healthcheck.sh @@ -2,8 +2,5 @@ nc -z "$NEXTCLOUD_HOST" 9000 || exit 0 nc -z localhost 8000 || exit 1 -if [ "$APACHE_PORT" != '443' ]; then - nc -z localhost "$APACHE_PORT" || exit 1 -else - nc -z "$NC_DOMAIN" "$APACHE_PORT" || exit 1 -fi +nc -z localhost "$APACHE_PORT" || exit 1 +nc -z "$NC_DOMAIN" 443 || exit 1