all-in-one/Containers/apache/healthcheck.sh
Simon L fc29e69b96 improve healthcheck to only exit 1 if it is started
Signed-off-by: Simon L <szaimen@e.mail.de>
2022-12-28 15:25:20 +01:00

9 lines
226 B
Bash

#!/bin/bash
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
curl -skfI 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