2021-08-29 20:01:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-01-28 23:23:58 +01:00
|
|
|
# If the config file does not contain a default port and the CONDUIT_PORT env is not set, create
|
|
|
|
# try to get port from process list
|
2022-01-28 22:19:19 +01:00
|
|
|
if [ -z "${CONDUIT_PORT}" ]; then
|
2022-02-02 00:51:38 +01:00
|
|
|
CONDUIT_PORT=$(ss -tlpn | grep conduit | grep -m1 -o ':[0-9]*' | grep -m1 -o '[0-9]*')
|
2022-01-28 22:19:19 +01:00
|
|
|
fi
|
|
|
|
|
2021-08-29 20:01:38 +02:00
|
|
|
# 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.
|
2021-11-21 18:34:08 +01:00
|
|
|
# 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" || \
|
2021-08-29 20:01:38 +02:00
|
|
|
exit 1
|