소스 검색

fix: update database password in config

The database password was previously empty, which posed a security risk. It has now been set to a secure password to prevent unauthorized access.
caesar 2 달 전
부모
커밋
487df61882
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      config.php

+ 1 - 1
config.php

@@ -13,7 +13,7 @@ define('DB_HOST',    'localhost');
 define('DB_PORT',    3306);
 define('DB_NAME',    'bcjd_nav');
 define('DB_USER',    'root');
-define('DB_PASS',    '');
+define('DB_PASS',    '94yyaoliN!');
 define('DB_CHARSET', 'utf8mb4');
 
 // ---- 站点密码(bcrypt 哈希)----