diff --git a/.gitignore b/.gitignore index 28bfa28..61d9741 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ /static/upload !composer.json /composer.lock +/config/dingtalk.php +/config/mail.php diff --git a/config/cache.php b/config/cache.php index e24c86a..4668e89 100644 --- a/config/cache.php +++ b/config/cache.php @@ -24,25 +24,16 @@ 'expire' => 0, ];*/ return [ - 'type' => 'redis', - // 默认使用的缓存 - 'default' => [ - // 驱动方式 - 'type' => 'file', - // 缓存保存目录 - 'path' => './runtime/default', - ], - // redis缓存 - 'redis' => [ - // 驱动方式 - 'type' => 'redis', - // 服务器地址 - 'host' => '127.0.0.1', - // 端口 - 'port' => '6379', - // 缓存保存目录 - 'path' => './runtime/cache', - // 全局缓存有效期(0为永久有效) - 'expire'=> 0, - ], + // 驱动方式 + 'type' => 'redis', + // 服务器地址 + 'host' => '127.0.0.1', + // 密码 + 'password' => '', + // 端口 + 'port' => '6379', + // 缓存保存目录 + 'path' => './runtime/cache', + // 全局缓存有效期(0为永久有效) + 'expire' => 0, ]; diff --git a/index.html b/index.html new file mode 100644 index 0000000..4745cf6 --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +Pear Project
\ No newline at end of file