Files
dsserver/plugin/admin/config/database.php
T
zimoyin 4c841b9dbf init
2026-04-02 17:42:00 +08:00

19 lines
527 B
PHP

<?php
return [
'default' => 'mysql',
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => '3306',
'database' => 'ds2',
'username' => 'root',
'password' => 'user',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
],
];