mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-30 07:20:09 +00:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
13 lines
291 B
Bash
13 lines
291 B
Bash
#!/bin/bash
|
|
# SPDX-FileCopyrightText: 2022 Nextcloud GmbH <https://nextcloud.com>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
if [ "$AIO_LOG_LEVEL" = 'debug' ]; then
|
|
set -x
|
|
fi
|
|
|
|
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
|
|
nc -z 127.0.0.1 8000 || exit 1
|
|
nc -z 127.0.0.1 "$APACHE_PORT" || exit 1
|