mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-02-23 21:36:19 +08:00
6 lines
157 B
Bash
6 lines
157 B
Bash
#!/bin/bash
|
|
|
|
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
|
|
nc -z localhost 8000 || exit 1
|
|
nc -z localhost "$APACHE_PORT" || exit 1
|
|
nc -z "$NC_DOMAIN" 443 || exit 1
|