all-in-one/Containers/apache/healthcheck.sh
2023-04-08 13:28:19 +02:00

9 lines
212 B
Bash

#!/bin/bash
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
nc -z localhost 8000 || exit 1
nc -z localhost "$APACHE_PORT" || exit 1
if [ "$APACHE_PORT" == '443' ]; then
nc -z "$NC_DOMAIN" "$APACHE_PORT" || exit 1
fi