mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-01 11:32:27 +08:00
95311fd7c3
Signed-off-by: szaimen <szaimen@e.mail.de>
8 lines
187 B
Bash
8 lines
187 B
Bash
#!/bin/bash
|
|
|
|
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
|