增加.env环境变量配置
This commit is contained in:
parent
dae7498662
commit
a1bafc64f9
28
.env.example
28
.env.example
@ -13,3 +13,31 @@ password = root
|
|||||||
hostport = 3306
|
hostport = 3306
|
||||||
prefix = pear_
|
prefix = pear_
|
||||||
debug = true
|
debug = true
|
||||||
|
|
||||||
|
[config]
|
||||||
|
notice_push = false
|
||||||
|
dingtalk_push = false
|
||||||
|
mail_push = false
|
||||||
|
|
||||||
|
|
||||||
|
[sms]
|
||||||
|
debug = true
|
||||||
|
|
||||||
|
[mail]
|
||||||
|
open = false
|
||||||
|
Host = smtp.example.com
|
||||||
|
SMTPAuth = true
|
||||||
|
Username = example@example.com
|
||||||
|
Password = example
|
||||||
|
SMTPSecure = tls
|
||||||
|
Port = 25
|
||||||
|
|
||||||
|
[cache]
|
||||||
|
type = redis
|
||||||
|
path = ./runtime/cache
|
||||||
|
expire = 0
|
||||||
|
|
||||||
|
[redis]
|
||||||
|
host = 127.0.0.1
|
||||||
|
port = 6379
|
||||||
|
password =
|
||||||
|
@ -8,32 +8,36 @@
|
|||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
// | Author: liu21st <liu21st@gmail.com>
|
// | Author: liu21st <liu21st@gmail.com>
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
use think\facade\Env;
|
||||||
|
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
// | 缓存设置
|
// | 缓存设置
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
/*return [
|
if (Env::get('cache.type', 'redis') == 'redis') {
|
||||||
// 驱动方式
|
return [
|
||||||
'type' => 'File',
|
// 驱动方式
|
||||||
// 缓存保存目录
|
'type' => 'redis',
|
||||||
'path' => '',
|
// 服务器地址
|
||||||
// 缓存前缀
|
'host' => Env::get('redis.host', '127.0.0.1'),
|
||||||
'prefix' => '',
|
// 密码
|
||||||
// 缓存有效期 0表示永久缓存
|
'password' => Env::get('redis.password', ''),
|
||||||
'expire' => 0,
|
// 端口
|
||||||
];*/
|
'port' => Env::get('redis.port', 6379),
|
||||||
return [
|
// 缓存保存目录
|
||||||
// 驱动方式
|
'path' => Env::get('cache.path', './runtime/cache'),
|
||||||
'type' => 'redis',
|
// 全局缓存有效期(0为永久有效)
|
||||||
// 服务器地址
|
'expire' => Env::get('cache.expire', 0),
|
||||||
'host' => '127.0.0.1',
|
];
|
||||||
// 密码
|
} else {
|
||||||
'password' => '',
|
return [
|
||||||
// 端口
|
// 驱动方式
|
||||||
'port' => '6379',
|
'type' => 'File',
|
||||||
// 缓存保存目录
|
// 缓存保存目录
|
||||||
'path' => './runtime/cache',
|
'path' => '',
|
||||||
// 全局缓存有效期(0为永久有效)
|
// 缓存前缀
|
||||||
'expire' => 0,
|
'prefix' => '',
|
||||||
];
|
// 缓存有效期 0表示永久缓存
|
||||||
|
'expire' => Env::get('cache.expire', 0),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
use think\facade\Env;
|
||||||
return [
|
return [
|
||||||
'notice_push' => false, //是否开启websocket消息推送
|
'notice_push' => Env::get('config.notice_push', false), //是否开启websocket消息推送
|
||||||
'dingtalk_push' => false, //是否开启钉钉消息推送
|
'dingtalk_push' => Env::get('config.dingtalk_push', false), //是否开启钉钉消息推送
|
||||||
'mail_push' => false, //是否开启邮件消息推送
|
'mail_push' => Env::get('config.mail_push', false), //是否开启邮件消息推送
|
||||||
];
|
];
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
use think\facade\Env;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'open' => false, //Weather open mail support
|
'open' => Env::get('mail.open', false), //Weather open mail support
|
||||||
'Host' => 'smtp.example.com',// Specify main and backup SMTP servers
|
'Host' => Env::get('mail.Host', 'smtp.example.com'),// Specify main and backup SMTP servers
|
||||||
'SMTPAuth' => true,// Enable SMTP authentication
|
'SMTPAuth' => Env::get('mail.SMTPAuth', true),// Enable SMTP authentication
|
||||||
'Username' => 'example@example.com',// SMTP username
|
'Username' => Env::get('mail.Username', 'example@example.com'),// SMTP username
|
||||||
'Password' => 'example',// SMTP password
|
'Password' => Env::get('mail.Password', 'example'),// SMTP password
|
||||||
'SMTPSecure' => 'tls',// Enable TLS encryption, `ssl` also accepted
|
'SMTPSecure' => Env::get('mail.SMTPSecure', 'tls'),// Enable TLS encryption, `ssl` also accepted
|
||||||
'Port' => 25,// TCP port to connect to
|
'Port' => Env::get('mail.Port', 25),// TCP port to connect to
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
use think\facade\Env;
|
||||||
/* 定义Session会话字段名 */
|
/* 定义Session会话字段名 */
|
||||||
$session_name = 's' . substr(md5(__DIR__), -8);
|
$session_name = 's' . substr(md5(__DIR__), -8);
|
||||||
$session_path = env('runtime_path') . 'sess' . DIRECTORY_SEPARATOR;
|
$session_path = env('runtime_path') . 'sess' . DIRECTORY_SEPARATOR;
|
||||||
@ -6,13 +7,13 @@ file_exists($session_path) || mkdir($session_path, 0755, true);
|
|||||||
|
|
||||||
/* 定义Session会话参数 */
|
/* 定义Session会话参数 */
|
||||||
return [
|
return [
|
||||||
'id' => '',
|
'id' => '',
|
||||||
'type' => 'redis',
|
'prefix' => 'ta',
|
||||||
'prefix' => 'ta',
|
'type' => Env::get('cache.type', 'redis') == 'redis' ? 'redis' : '',
|
||||||
'expire' => 3600 * 24,
|
'expire' => 3600 * 24,
|
||||||
'auto_start' => true,
|
'auto_start' => true,
|
||||||
'path' => $session_path,
|
'path' => $session_path,
|
||||||
'name' => $session_name,
|
'name' => $session_name,
|
||||||
'var_session_id' => $session_name,
|
'var_session_id' => $session_name,
|
||||||
|
|
||||||
// 'use_trans_sid' => 0,
|
// 'use_trans_sid' => 0,
|
||||||
@ -21,9 +22,9 @@ return [
|
|||||||
|
|
||||||
|
|
||||||
// redis主机
|
// redis主机
|
||||||
'host' => '127.0.0.1',
|
'host' => Env::get('redis.host', '127.0.0.1'),
|
||||||
// redis端口
|
// redis端口
|
||||||
'port' => 6379,
|
'port' => Env::get('redis.port', 6379),
|
||||||
// 密码
|
// 密码
|
||||||
'password' => '',
|
'password' => Env::get('redis.password', ''),
|
||||||
];
|
];
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
use think\facade\Env;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'debug' => true, //debug模式下不发送短信
|
'debug' => Env::get('sms.debug', true), //debug模式下不发送短信
|
||||||
// HTTP 请求的超时时间(秒)
|
// HTTP 请求的超时时间(秒)
|
||||||
'timeout' => 5.0,
|
'timeout' => 5.0,
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user