From bda1bbc2509df33c2762b5ea7c20d30e1ee79ba1 Mon Sep 17 00:00:00 2001 From: micalis <> Date: Sun, 26 Jul 2026 14:19:56 +0200 Subject: [PATCH] Fix ai fetch again --- status.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/status.php b/status.php index c95ca98..2135bad 100644 --- a/status.php +++ b/status.php @@ -11,7 +11,7 @@ header('Access-Control-Allow-Origin: *'); $services = [ ['id' => 'gitea', 'name' => 'Gitea', 'url' => 'https://gitea.micalis.net/', 'timeout' => 5], ['id' => 'nextcloud', 'name' => 'Nextcloud', 'url' => 'https://nextcloud.micalis.net/', 'timeout' => 5], - ['id' => 'ai', 'name' => 'AI', 'url' => 'https://ai.micalis.net/login', 'timeout' => 5], + ['id' => 'ai', 'name' => 'AI', 'url' => 'https://ai.micalis.net/', 'timeout' => 5], ['id' => 'jellyfin', 'name' => 'Jellyfin', 'url' => 'https://jellyfin.micalis.net/', 'timeout' => 5], ['id' => 'amp', 'name' => 'AMP Game Panel', 'url' => 'https://amp.micalis.net/', 'timeout' => 5], ['id' => 'fluxer', 'name' => 'Fluxer', 'url' => 'https://chat.micalis.net/', 'timeout' => 5], @@ -38,7 +38,7 @@ function checkService($url, $timeout = 5) { CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_HEADER => true, - CURLOPT_NOBODY => true, + //CURLOPT_NOBODY => true, CURLOPT_TIMEOUT => $timeout, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_FOLLOWLOCATION => true,