mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
OK=$(curl --silent http://127.0.0.1:81/api/ | jq --raw-output '.status')
|
||
|
|
||
|
if [ "$OK" == "OK" ]; then
|
||
|
echo "OK"
|
||
|
exit 0
|
||
|
else
|
||
|
echo "NOT OK"
|
||
|
exit 1
|
||
|
fi
|