One Hat Cyber Team
Your IP :
18.190.207.156
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
public_html
/
centosuit
/
config
/
View File Name :
logcleaner.php
<?php return [ /* * Enables trimming of big log files. */ 'trimming_enabled' => env('LOGCLEANER_TRIMMING_ENABLED', true), /* * The number of lines to keep in every log when trimming log files. * E.g. if you set this to 10000, the 10000 last lines * of your laravel logs are kept. */ 'log_lines_to_keep' => 1000, /* * Enables deletion of old log files. */ 'deleting_enabled' => env('LOGCLEANER_DELETING_ENABLED', true), /* * The number of log files to keep when deleting old logs. * E.g. if you are using daily logs and you set this to * 14, the log files for the last 14 days are kept. */ 'log_files_to_keep' => 2, /* * Filenames that should not be trimmed or deleted. This accepts wildcards. * E.g. '*.txt' will keep all text files from being trimmed or deleted. */ 'exclude' => [], ];