- 134-tool registry with programmatic SEO (unique titles/H1/descriptions, JSON-LD graphs, sitemap index, canonical 301 enforcement via required filter) - DB-backed job queue (SKIP LOCKED) with drivers: Ffmpeg, Images (GD), Pdf (qpdf/gs/poppler), Youtube (thumbnails), Qr (server-side PNG) - Security: SSRF guard, MIME validation, rate limits, API-key auth, bcrypt admin login, security headers - Admin panel: dashboard, tools/categories/guides CRUD, SEO audit, analytics, job inspector with retry, system health, feature flags - Docker deployment (nginx + web/api FPM pools + scalable workers), PHPUnit suite (19 tests / 1139 assertions), PWA manifest + service worker
33 lines
1008 B
PHP
33 lines
1008 B
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
/**
|
|
* Optimization Configuration.
|
|
*
|
|
* NOTE: This class does not extend BaseConfig for performance reasons.
|
|
* So you cannot replace the property values with Environment Variables.
|
|
*
|
|
* WARNING: Do not use these options when running the app in the Worker Mode.
|
|
*/
|
|
class Optimize
|
|
{
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Config Caching
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching
|
|
*/
|
|
public bool $configCacheEnabled = false;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Config Caching
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching
|
|
*/
|
|
public bool $locatorCacheEnabled = false;
|
|
}
|