mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
27 lines
594 B
PHP
27 lines
594 B
PHP
<?php
|
|
|
|
return [
|
|
// HTTP 请求的超时时间(秒)
|
|
'timeout' => 5.0,
|
|
|
|
// 默认发送配置
|
|
'default' => [
|
|
// 网关调用策略,默认:顺序调用
|
|
'strategy' => \Overtrue\EasySms\Strategies\OrderStrategy::class,
|
|
|
|
// 默认可用的发送网关
|
|
'gateways' => [
|
|
'yunpian',
|
|
],
|
|
],
|
|
|
|
// 可用的网关配置
|
|
'gateways' => [
|
|
'errorlog' => [
|
|
'file' => '/tmp/easy-sms.log',
|
|
],
|
|
'yunpian' => [
|
|
'api_key' => '0c9c87c41aac355520d47d3c84e5a532',
|
|
],
|
|
],
|
|
]; |