2023-02-05 05:04:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-07-01 00:33:26 +00:00
|
|
|
# SPDX-FileCopyrightText: syuilo and misskey-project , Type4ny-project
|
2023-07-27 05:31:52 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2024-07-01 00:33:26 +00:00
|
|
|
PORT=$(grep '^port:' /type4ny/.config/default.yml | awk 'NR==1{print $2; exit}')
|
2024-05-23 06:19:52 +00:00
|
|
|
curl -Sfso/dev/null "http://localhost:${PORT}/healthz"
|