Guides
Task-oriented walkthroughs for common deployments.
- WordPress — drop in a WordPress install with no PHP-FPM.
- Laravel — Laravel with embedded SQLite or MySQL passthrough.
- Virtual Hosts — multi-tenant directory-based hosting.
- TLS / ACME — automatic Let’s Encrypt certificates.
- Clustering Setup — gossip-based HA with clustered SQLite.
- KV from PHP — the
ephpm_kv_*SAPI functions. - Query Stats with Prometheus — observability for your database queries.
- Worker Mode (Write Your Own Worker) — the engine primitives: boot once, loop on
take_request()/send_response(). - Laravel Octane (Worker Mode) — boot Laravel once per worker with the native Octane driver.
- WordPress Worker Mode — boot WordPress once per worker with the
ephpm/wordpress-workeradapter. - PSR-15 Apps (Worker Mode) — Slim, Mezzio, or any PSR-15 handler on the generic
ephpm/psr15-workeradapter. - Native Middleware — compiled
.somiddleware (JWT, CORS, rate limiting, security headers) running in front of PHP, with KV-backed cluster-wide state.