Commit 75a5ec31 authored by rlgy's avatar rlgy

update

parent 91a3f4c0
<?php
/**
* Created by PhpStorm.
* User: rlgyzhcn
* Date: 18-5-31
* Time: 上午10:27
*/
return [
];
\ No newline at end of file
<?php
/**
* Created by PhpStorm.
* User: rlgyzhcn
* Date: 18-5-31
* Time: 上午10:31
*/
return [
];
\ No newline at end of file
<?php
/**
* Created By Sublime Text 3
*
* @date 2018-09-07 15:55:45
* @authors rlgy <rlgyzhcn@qq.com>
*/
return [
];
<?php
/**
* Created By Sublime Text 3
*
* @date 2018-09-07 15:57:10
* @authors rlgy <rlgyzhcn@qq.com>
*/
return [
];
<?php
/**
* Created By Sublime Text 3
*
* @date 2018-09-07 15:55:45
* @authors rlgy <rlgyzhcn@qq.com>
*/
return [
'components' => [
/**
* db config
*/
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=127.0.0.1;dbname=manage',
'username' => 'root',
'password' => '123456',
'charset' => 'utf8',
'tablePrefix' => 'gli_',
],
'db_pwallet' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=127.0.0.1;dbname=api',
'username' => 'root',
'password' => '123456',
'charset' => 'utf8',
],
'cache' => [
'class' => 'yii\redis\Cache',
'redis' => [
'hostname' => 'localhost',
'port' => 6379,
'password' => 'jlm123456',
'database' => 0,
],
],
'redis' => [
'class' => 'yii\redis\Connection',
'hostname' => 'localhost',
'password' => 'jlm123456',
'port' => 6379,
'database' => 1,
],
'redis-queue' => [
'class' => 'yii\redis\Connection',
'hostname' => 'localhost',
'password' => 'jlm123456',
'port' => 6379,
'database' => 2,
],
'queue' => [
'class' => \yii\queue\redis\Queue::class,
'redis' => 'redis-queue', // Redis connection component or its config
'channel' => 'queue', // Queue channel key
],
'uploader' => [
'class' => 'common\components\uploader\Uploader',
'baseuri' => 'http://127.0.0.1:8900/admin/upload',
'absolute' => dirname(dirname(__DIR__)) . '/backend/upload',
],
],
];
<?php
/**
* Created By Sublime Text 3
*
* @date 2018-09-07 15:57:10
* @authors rlgy <rlgyzhcn@qq.com>
*/
return [
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment