23-01-2026

This commit is contained in:
Kevin Adametz 2026-01-23 17:35:23 +01:00
parent a939cd51ef
commit a8b395e20d
248 changed files with 29342 additions and 4805 deletions

View file

@ -106,13 +106,13 @@ return [
'redis' => [
'client' => 'predis',
'client' => env('REDIS_CLIENT', 'phpredis'),
'default' => [
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => 0,
'database' => env('REDIS_DB', 0),
],
],

View file

@ -35,38 +35,51 @@ return [
'channels' => [
'order_controller' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/order_controller.log'),
'level' => 'debug',
'level' => env('LOG_LEVEL', 'warning'),
'days' => 14,
],
'abo_order' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/abo_order.log'),
'level' => env('LOG_LEVEL', 'warning'),
'days' => 14,
],
'domain' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/domain.log'),
'level' => env('LOG_LEVEL', 'warning'),
'days' => 14,
],
'payone' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/payone.log'),
'level' => env('LOG_LEVEL', 'warning'),
'days' => 14,
],
'cleanup' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/cleanup.log'),
'level' => env('LOG_LEVEL', 'info'),
'days' => 7,
],
'payment' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/payment.log'),
'level' => env('LOG_LEVEL', 'warning'),
'days' => 30,
],
'cron' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/cron.log'),
'level' => env('LOG_LEVEL', 'info'),
'days' => 14,
],
'dhl' => [
'driver' => 'daily',
'path' => storage_path('logs/dhl.log'),
'level' => 'debug',
'level' => env('LOG_LEVEL', 'info'),
'days' => 30,
],
'stack' => [
@ -75,16 +88,17 @@ return [
],
'single' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'level' => env('LOG_LEVEL', 'warning'),
'days' => 14,
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'days' => 7,
'level' => env('LOG_LEVEL', 'warning'),
'days' => 14,
],
'slack' => [