Fix Coolify URLs and database config

This commit is contained in:
2026-06-11 01:50:43 +07:00
parent 77caccc6a0
commit d7c208c404
4 changed files with 15 additions and 11 deletions
+3 -3
View File
@@ -10,10 +10,10 @@ header("Access-Control-Allow-Headers: Content-Type");
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { http_response_code(200); exit(); }
// ── KONFIGURASI ──────────────────────────────────────────────
$host = "localhost";
$host = "tocg40440408gocww0c8osgc";
$dbname = "default";
$username = "root";
$password = "";
$username = "mysql";
$password = "sjQiQ0OnycL1bhCEzywCfN41cWHGFmBzQXiEr0P3RiMrFlq3pvI2lowKRDDmOhAN";
try {
$pdo = new PDO("mysql:host=$host;dbname=$dbname;charset=utf8mb4", $username, $password);