mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-11 09:23:36 +08:00
88fda477c6
Signed-off-by: Zoey <zoey@z0ey.de>
9 lines
221 B
Bash
9 lines
221 B
Bash
#!/bin/bash
|
|
|
|
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
|