mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 15:10:54 +00:00
102 lines
3.0 KiB
PHP
102 lines
3.0 KiB
PHP
<?php
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Language
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config your yunpian api key from yunpian provided.
|
|
|
|
|
| Options: ['zh-cn', 'zh-tw', 'en', 'ja', 'ko']
|
|
|
|
|
*/
|
|
'lang' => 'zh-cn',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config ServerGetKey
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can decision whether to get the geetest key from database or not.
|
|
|
|
|
*/
|
|
'server-get-config' => TRUE,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Geetest Id
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config your yunpian api key from yunpian provided.
|
|
|
|
|
*/
|
|
'id' => env('GEETEST_ID'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Geetest Key
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config your yunpian api key from yunpian provided.
|
|
|
|
|
*/
|
|
'key' => env('GEETEST_KEY'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Geetest URL
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config your geetest url for ajax validation.
|
|
|
|
|
*/
|
|
'url' => '/geetest',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Geetest Protocol
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config your geetest url for ajax validation.
|
|
|
|
|
| Options: http or https
|
|
|
|
|
*/
|
|
'protocol' => 'http',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Geetest Product
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config your geetest url for ajax validation.
|
|
|
|
|
| Options: float, popup, custom, bind
|
|
|
|
|
*/
|
|
'product' => 'float',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Client Fail Alert Text
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config the alert text when it failed in client.
|
|
|
|
|
*/
|
|
'client_fail_alert' => '请正确完成验证码操作',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Config Server Fail Alert
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can config the alert text when it failed in server (two factor validation).
|
|
|
|
|
*/
|
|
'server_fail_alert' => '验证码校验失败,请重新尝试',
|
|
|
|
|
|
];
|