mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
9 lines
276 B
Bash
9 lines
276 B
Bash
#!/bin/sh
|
|
|
|
# health check to allow 404 status code as valid
|
|
STATUSCODE=$(curl --silent --output /dev/null --write-out "%{http_code}" $1)
|
|
# will be 000 on non-http error (e.g. connection failure)
|
|
if test $STATUSCODE -ge 500 || test $STATUSCODE -lt 200; then
|
|
exit 1
|
|
fi
|
|
exit 0
|