| 1234567891011121314151617181920212223242526 | 
							- <?php
 
- # 数据库配置
 
- $config['database'] = array
 
- (
 
- 	# 默认数据库配置
 
- 	'default' => array
 
- 	(
 
- 		'type' => 'pdo',
 
- 		'host' => array
 
- 		(
 
- 			'read' => 'web-mysql:3306',
 
- 			'update' => 'web-mysql:3306',
 
- 		),
 
- 		'database' => 'wonderful',
 
- 		'username' => 'root',
 
- 		'password' => '123456',
 
- 		'charset' => 'utf8',
 
- 	),
 
- );
 
- $config['debug'] = array
 
- (
 
- 	'log' => array('type' => 'file'),
 
- );
 
- return $config;
 
 
  |