This commit is contained in:
James Cole
2018-03-26 19:09:58 +02:00
parent dd5d2d1616
commit 5ca31ea3dd
3 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ return [
'single_user_mode' => true, 'single_user_mode' => true,
'is_demo_site' => false, 'is_demo_site' => false,
], ],
'encryption' => (is_null(env('USE_ENCRYPTION')) || env('USE_ENCRYPTION') === true), 'encryption' => is_null(env('USE_ENCRYPTION')) || env('USE_ENCRYPTION') === true,
'version' => '4.7.1.4', 'version' => '4.7.1.4',
'api_version' => '0.1', 'api_version' => '0.1',
'db_version' => 2, 'db_version' => 2,

View File

@@ -64,13 +64,13 @@ return [
'daily' => [ 'daily' => [
'driver' => 'daily', 'driver' => 'daily',
'path' => storage_path('logs/ff3-' . php_sapi_name() . '.log'), 'path' => storage_path('logs/ff3-' . PHP_SAPI . '.log'),
'level' => env('APP_LOG_LEVEL', 'info'), 'level' => env('APP_LOG_LEVEL', 'info'),
'days' => 7, 'days' => 7,
], ],
'dailytest' => [ 'dailytest' => [
'driver' => 'daily', 'driver' => 'daily',
'path' => storage_path('logs/test-ff3-' . php_sapi_name() . '.log'), 'path' => storage_path('logs/test-ff3-' . PHP_SAPI . '.log'),
'level' => env('APP_LOG_LEVEL', 'info'), 'level' => env('APP_LOG_LEVEL', 'info'),
'days' => 7, 'days' => 7,
], ],

View File

@@ -38,7 +38,7 @@ return [
| |
*/ */
'driver' => env('MAIL_DRIVER', 'smtp'), 'driver' => env('MAIL_DRIVER', 'log'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------