Conduit is a simple, fast and reliable chat server powered by Matrix https://conduit.rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
657 B
13 lines
657 B
#!/bin/sh |
|
|
|
# If the port is not specified as env var, take it from the config file |
|
if [ -z ${CONDUIT_PORT} ]; then |
|
CONDUIT_PORT=$(grep -m1 -o 'port\s=\s[0-9]*' conduit.toml | grep -m1 -o '[0-9]*') |
|
fi |
|
|
|
# The actual health check. |
|
# We try to first get a response on HTTP and when that fails on HTTPS and when that fails, we exit with code 1. |
|
# TODO: Change this to a single wget call. Do we have a config value that we can check for that? |
|
wget --no-verbose --tries=1 --spider "http://localhost:${CONDUIT_PORT}/_matrix/client/versions" || \ |
|
wget --no-verbose --tries=1 --spider "https://localhost:${CONDUIT_PORT}/_matrix/client/versions" || \ |
|
exit 1
|
|
|