Merge pull request #2302 from nextcloud/apache-healthcheck

apache healthcheck, check localhost apacheport with every apache port
This commit is contained in:
Simon L 2023-04-14 14:56:40 +02:00 committed by GitHub
commit 5a8989bb9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,8 +2,5 @@
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0 nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
nc -z localhost 8000 || exit 1 nc -z localhost 8000 || exit 1
if [ "$APACHE_PORT" != '443' ]; then nc -z localhost "$APACHE_PORT" || exit 1
nc -z localhost "$APACHE_PORT" || exit 1 nc -z "$NC_DOMAIN" 443 || exit 1
else
nc -z "$NC_DOMAIN" "$APACHE_PORT" || exit 1
fi