Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-04 02:18:00 +01:00
8 Zeilen
Kein EOL
202 B
Bash
8 Zeilen
Kein EOL
202 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [ -z "$ROCKET_TLS"]
|
|
then
|
|
curl --fail http://localhost:${ROCKET_PORT:-"80"}/alive || exit 1
|
|
else
|
|
curl --insecure --fail https://localhost:${ROCKET_PORT:-"80"}/alive || exit 1
|
|
fi |