From 7f162fa616529d4d1f0cd8d9349fd7649875b4b6 Mon Sep 17 00:00:00 2001 From: cedric Date: Wed, 10 Dec 2025 21:20:06 +0000 Subject: [PATCH] Change CACHE_DIR path --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 02f58df..ee293ff 100644 --- a/index.php +++ b/index.php @@ -2,7 +2,7 @@ declare(strict_types=1); // -------------------- CONSTANTES -------------------- -const CACHE_DIR = __DIR__ . '/cache'; +const CACHE_DIR = '/var/cache/homepage'; const INSTANCES_JSON = CACHE_DIR . '/instances.json'; const URLS_TXT = CACHE_DIR . '/urls.txt'; const INSTANCES_URL = 'https://searx.space/data/instances.json';