| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 | <?php# 验证dc是否存在,一般在share目录下$dc = array();$dc_file = '/share/dc/config.php';if (is_file($dc_file)) {    $dc = include($dc_file);}if (isset($dc['data'])) {    $config['base']['data'] = $dc['data'];}$create = false;if (isset($dc['mysql']['create'])) {    $create = $dc['mysql']['create'];}$ip = isset($dc['host']) ? $dc['host'] : '192.168.33.10';$local = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $ip;# 数据库配置$config['database'] = array(    'create' => $create,	# 默认数据库配置	'default' => array	(		'type' => 'pdo',		'host' => array		(			'read' => isset($dc['mysql']) ? $dc['mysql']['host'] : 'web-mysql:3306',			'update' => isset($dc['mysql']) ? $dc['mysql']['host'] : 'web-mysql:3306',		),		'database' => 'wonderful',		'username' => isset($dc['mysql']) ? $dc['mysql']['username'] : 'root',		'password' => isset($dc['mysql']) ? $dc['mysql']['password'] : '123456',		'charset' => 'utf8mb4',	),    'session' => array    (        'type' => 'redis',        'host' => isset($dc['redis']) ? $dc['redis'][0]['host'] : 'server-redis',        'port' => isset($dc['redis']) ? $dc['redis'][0]['port'] : '6379',        'password' => isset($dc['redis']) ? $dc['redis'][0]['password'] : 'dm_redis_123',    ));# 缓存配置$config['cache'] = array(    # 启用mysql数据库缓存,这个缓存是根据表名自动生成,dever::load形式和service的all、one形式均自动支持,无需手动添加    'mysql' => 0,    # 启用页面缓存 会根据当前的url来生成缓存,相当于页面静态化。    'html' => 0,    # 启用数据级别缓存 这个缓存是程序员自定义的:Dever::cache('name', 'value', 3600);    'data' => 0,    # 启用load加载器缓存,一般不加载    'load' => 0,    # 启用load加载器的远程加载缓存    'curl' => 0,    # 启用路由缓存    'route' => 0,    # 缓存精细控制,可以根据缓存的key(mysql为表名、service为小写类名,规则是模糊匹配),来控制每一条缓存    'routeKey' => array    (        'journal.buy_action' => 0,        'journal.code' => 0,        'passport' => 0,        'oauth' => 0,        'cron' => 0,        'combine' => 0,        'service_home' => 0,        //'service_list_code' => 0,        'service_buy.pay' => 0,        'vip_' => 0,    ),    # 哪些路由中的参数不参与生成缓存的key    'routeNoParam' => array    (        'signature' => array        (            'content.home',            'content.news',            'content.up',            'content.ad',            'journal.home',            'journal.getList',        ),        'uid' => array        (            'content.home',            'content.news',            'content.up',            'content.ad',            'journal.home',            'journal.getList',        ),    ),        # 缓存清理的参数名,请通过shell=clearcache执行    'shell' => 'clearcache',    # 是否启用key失效时间记录,启用之后,将会记录每个key的失效时间    'expire' => true,    # 缓存类型    'type' => 'redis',//memcache、redis    # 缓存保存方式,支持多个数据源、多台缓存服务器    'store' => array    (        array        (            'host' => 'server-redis',            'port' => '6379',            'weight' => 100,            'password' => 'dm_redis_123',        ),    ),);if (isset($dc['redis'])) {    $config['cache']['store'] = $dc['redis'];}$config['debug'] = array(	'log' => false);/*if (DEVER_APP_NAME == 'source') {    $config['debug']['log'] = array('type' => 'file'); }*/$host = 'http://'.$local . '/';$upload = $host . 'upload/';$uploadcdn = $host . 'upload/data/';$config['host'] = array(    'upload'=> $upload . 'upload/?save',    'uploadRes'     => isset($dc['res']) && $dc['res'] ? $dc['res'] : $uploadcdn . 'upload/',    'project' => array    (        'upload' => array        (            'path' => $host. 'upload/upload/?',        ),        'pay' => array        (            'path' => $host. 'pay/pay/?',        ),        'wechat_applet' => array        (            'path' => $host. 'wechat/wechat_applet/?',        ),    ),);return $config;
 |