feat: initial commit
This commit is contained in:
Executable
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
// error_reporting(E_ALL);
|
||||
// ini_set('display_errors', 1);
|
||||
|
||||
define('LOGIN_PASSWORD', 'test123456');
|
||||
|
||||
define('DB_USERNAME', 'cloaka_test');
|
||||
define('DB_NAME', 'cloaka_test');
|
||||
define('DB_PASSWORD', 'hNeb3phx3QX12fGC');
|
||||
|
||||
// --- API 鉴权秘钥(全局通用,对接 tiktokba.com cloak 服务)---
|
||||
define('CHECK_KEY', '');
|
||||
|
||||
// --- Redis 通用配置(供 CloakTrafficGuard 防重放功能使用)---
|
||||
define('REDIS_ENABLED', 'ON');
|
||||
define('REDIS_HOST', '127.0.0.1');
|
||||
define('REDIS_PORT', 6379);
|
||||
define('REDIS_TIMEOUT', 0.5);
|
||||
define('REDIS_PASSWORD', '');
|
||||
Reference in New Issue
Block a user