Stage DB 접속 정보 변경

This commit is contained in:
2026-09-09 14:13:48 +09:00
parent fcc8926172
commit 89011284e1
2 changed files with 12 additions and 3 deletions
@@ -0,0 +1,9 @@
<?php
$db_host = "mariadb.jisangs.com";
$db_user = "chocomae";
$db_passwd = "Fr12nds95";
$db_name = "chocomae";
$db_port = 3306;
?>
+3 -3
View File
@@ -5,10 +5,10 @@ $hasServiceDBSetting = file_exists(__DIR__."/service_db_setting.php");
if($hasServiceDBSetting == true) {
include(__DIR__."/service_db_setting.php");
} else {
$db_host = "localhost";
$db_user = "jisangs";
$db_host = "mariadb.jisangs.com";
$db_user = "chocomae";
$db_passwd = "Fr12nds95";
$db_name = "jisangs";
$db_name = "chocomae";
}
if (!isset($db_port)) $db_port = 3306;