12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- return [
- //Cors
- 'cors' => [
- 'origin' => env('CORS_ORIGIN', ''),
- 'switch' => envInt('CORS_SWITCH', 0),
- ],
- //Timezone
- 'timezone' => env('TIMEZONE', null),
- //Monitor
- 'monitor' => [
- 'switch' => envInt('MONITOR_SWITCH', 0),
- ],
- //Throttle
- 'throttle' => [
- 'metric' => function(\SwFwLess\components\http\Request $request){
- return $request->getRoute();
- },
- 'period' => envInt('THROTTLE_PERIOD', 60),
- 'throttle' => envInt('THROTTLE_THROTTLE', 10000),
- ],
- //RedLock
- 'red_lock' => [
- 'connection' => env('RED_LOCK_CONNECTION', 'red_lock'),
- ],
- //RateLimit
- 'rate_limit' => [
- 'connection' => env('RATE_LIMIT_CONNECTION', 'rate_limit'),
- ],
- //Cache
- 'cache' => [
- 'connection' => env('CACHE_CONNECTION', 'cache'), //redis connection
- 'update_lock_ttl' => envInt('CACHE_UPDATE_LOCK_TTL', 10),
- ],
- //Hot Reload
- 'hot_reload' => [
- 'switch' => envInt('HOT_RELOAD_SWITCH', 0),
- 'watch_dirs' => [
- __DIR__ . '/',
- __DIR__ . '/../app/',
- __DIR__ . '/../vendor/',
- __DIR__ . '/../',
- ],
- 'excluded_dirs' => [],
- 'watch_suffixes' => ['.php', '.env'],
- 'driver' => env('HOT_RELOAD_DRIVER', \Kwf\FileWatcher\Watcher::class), //HuangYi\Watcher\Watcher::class is another choice
- ],
- //Error handler
- 'error_handler' => [
- 'err_formatter' => function (\Throwable $e) {
- return nl2br($e->getMessage() . PHP_EOL . $e->getTraceAsString());
- },
- ],
- //Ip Restriction
- 'ip_restriction' => [
- 'ips' => env('IP_RESTRICTION_IPS'),
- 'api_prefix' => env('IP_RESTRICTION_API_PREFIX'),
- ],
- //Scheduler
- 'scheduler' => [
- // [
- // 'schedule' => '* * * * *',
- // 'jobs' => function () {
- // echo 'Every minute', PHP_EOL;
- // },
- // ],
- // [
- // 'schedule' => '*/2 * * * *',
- // 'jobs' => function () {
- // echo 'Every two minutes', PHP_EOL;
- // },
- // ],
- ],
- //You can turn off the switch to improve the performance
- 'route_di_switch' => envBool('ROUTE_DI_SWITCH', false),
- ];
|