添加docker 部署agent

This commit is contained in:
2026-04-13 17:06:02 +08:00
parent 797824d01c
commit a7c2448207
2866 changed files with 1149 additions and 272838 deletions

View File

@@ -1,13 +1,13 @@
<?php
defined('IN_IA') or exit('Access Denied');
// 修复apibase.php的路径 - 使用绝对路径
$apibase_path = dirname(dirname(__DIR__)) . '/source/apis/apibase.php';
// 修复apiBase.php的路径 - 使用绝对路径
$apibase_path = dirname(dirname(__DIR__)) . '/source/apis/apiBase.php';
if (file_exists($apibase_path)) {
require_once $apibase_path;
} else {
// 如果文件不存在,记录错误但不中断执行
error_log("apibase.php not found at: $apibase_path");
error_log("apiBase.php not found at: $apibase_path");
}