aboutsummaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-09-11 09:43:28 +0200
committerGravatar GitHub <noreply@github.com> 2025-09-11 09:43:28 +0200
commitc8da217e875c2371a8d1d13a678e2a811d906922 (patch)
tree4d0c583bd3d210646886ae631f70cf1aae8b9ea4 /cli
parent8e8ff4014d9dcdb4cdb57b2d82f0d5355d1a5dce (diff)
Docker healthcheck (#7945)
* Docker healthcheck fix https://github.com/FreshRSS/FreshRSS/issues/7377 * Use echo for non-CLI error * curl_close is deprecated * Connection: close * Update cli/health.php Co-authored-by: Frans de Jonge <fransdejonge@gmail.com> --------- Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Diffstat (limited to 'cli')
-rwxr-xr-xcli/health.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/cli/health.php b/cli/health.php
new file mode 100755
index 000000000..a001f43aa
--- /dev/null
+++ b/cli/health.php
@@ -0,0 +1,31 @@
+#!/usr/bin/env php
+<?php
+declare(strict_types=1);
+
+if (php_sapi_name() !== 'cli') {
+ echo 'Error: This script may only be invoked from command line!', PHP_EOL;
+ die(2);
+}
+
+$options = getopt('', ['url::', 'connect_timeout::', 'timeout::']);
+$address = is_string($options['url'] ?? null) ? $options['url'] : 'http://localhost/i/';
+$ch = curl_init($address);
+if ($ch === false) {
+ fwrite(STDERR, 'Error: Failed to initialize cURL!' . PHP_EOL);
+ die(3);
+}
+curl_setopt_array($ch, [
+ CURLOPT_CONNECTTIMEOUT => is_numeric($options['connect_timeout'] ?? null) ? (int)$options['connect_timeout'] : 3,
+ CURLOPT_TIMEOUT => is_numeric($options['timeout'] ?? null) ? (int)$options['timeout'] : 5,
+ CURLOPT_ENCODING => '', //Enable all encodings
+ CURLOPT_HTTPHEADER => [
+ 'Connection: close',
+ ],
+ CURLOPT_RETURNTRANSFER => true,
+]);
+$content = curl_exec($ch);
+$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
+
+if ($httpCode !== 200 || !is_string($content) || !str_contains($content, 'jsonVars') || !str_contains($content, '</html>')) {
+ die(1);
+}