33 lines
850 B
PHP
Executable File
33 lines
850 B
PHP
Executable File
<?php
|
|
/**
|
|
* @Author: 嗨噜客(三亚)<fm453>
|
|
* @Date: 2025-04-10 23:19:11
|
|
* @FilePath: addons-ctms/config/db.php
|
|
* @Description:
|
|
* @Email: 393213759@qq.com
|
|
* Copyright (c) 2025 by www.hiluker.cn, All Rights Reserved.
|
|
*/
|
|
|
|
$config = [
|
|
'components' => [
|
|
'db' => [
|
|
'class' => 'yii\db\Connection',
|
|
'dsn' => 'mysql:host=127.0.0.1;dbname=dacms',
|
|
'username' => 'dacms',
|
|
'password' => 'CiwE5YbLnL7Yw8zs',
|
|
'charset' => 'utf8',
|
|
'tablePrefix' => '',
|
|
],
|
|
'ac' => [
|
|
'class' => 'yii\db\Connection',
|
|
'dsn' => 'mysql:host=127.0.0.1;dbname=ctms',
|
|
'username' => 'ctms',
|
|
'password' => 'cP45w8z7RCtHstst',
|
|
'charset' => 'utf8mb4',
|
|
'tablePrefix' => '',
|
|
],
|
|
],
|
|
];
|
|
|
|
return $config;
|