I eat my own dog food. This site is the proof-of-concept for everything I recommend to B2B clients.
This site runs on a single VPS managed by CloudPanel, a modern server control panel built for PHP applications. CloudPanel provides Nginx with FastCGI cache, PHP-FPM with OPCache, and Let's Encrypt SSL — all configured for maximum throughput with no cPanel bloat or Apache overhead.
Nginx + FastCGI Cache
PHP-FPM 8.5 + OPCache
Every push to main triggers a GitHub Actions workflow that automates the release:
composer install --no-devnpm ci && npm run buildphp artisan down (for 0.5s max)
Our case studies are stored as Markdown files with YAML front matter, parsed by spatie/yaml-front-matter. Each file is cached in Laravel's file cache for 1 hour.
resources/content/engineering/
├── 01-zero-downtime-vps-migration.md
├── 02-programmatic-seo-landing-pages.md
└── 03-core-web-vitals-100-lighthouse.md
Why not MySQL for content? Database queries are the primary bottleneck in typical content systems. By serving content directly from cached files, database latency drops to 0ms for reads.