- Fix EventType deletion error handling (constraint violations) - Fix Event update error (package_id column missing) - Fix Event Type dropdown options (JSON display issue) - Fix EventPackagesRelationManager query error - Add missing translations for deletion errors - Apply Pint formatting
17 lines
463 B
PHP
17 lines
463 B
PHP
<?php
|
|
|
|
return [
|
|
'antivirus' => [
|
|
'enabled' => env('SECURITY_AV_ENABLED', false),
|
|
'binary' => env('SECURITY_AV_BINARY', '/usr/bin/clamscan'),
|
|
'arguments' => env('SECURITY_AV_ARGUMENTS', '--no-summary'),
|
|
'timeout' => (int) env('SECURITY_AV_TIMEOUT', 60),
|
|
],
|
|
'exif' => [
|
|
'strip' => env('SECURITY_STRIP_EXIF', true),
|
|
],
|
|
'queue' => [
|
|
'name' => env('SECURITY_SCAN_QUEUE', 'media-security'),
|
|
],
|
|
];
|