提交 2f51cf87 authored 作者: chengye's avatar chengye

调整redis地址为可配置

上级 c3123c34
......@@ -16,11 +16,11 @@ class SingleSign {
public $instence = null;
public function __construct($ip='192.168.1.71',$port=6379){
public function __construct(){
if($this->instence === null){
$redis = new \Redis();
$res = $redis->connect($ip,$port);
$redis = new \Redis();
$res = $redis->connect(config('admin.redis_host'),config('admin.redis_port'));
if($res) $this->instence = $redis;
else throw new Exception("redis connect faild");
}
......
......@@ -12,4 +12,6 @@ return [
'files_dir' => './static/uploads/files',
'search_area' => '1', //1按部门搜索,2全局
'order_per' =>'ZD',
'redis_host' => '192.168.1.71',
'redis_port' => 6379
];
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论