Qbix Server
A single program that replaces the usual nginx-plus-PHP-FPM combo for running a PHP website, claiming to actually serve pages faster while also handling WebSockets for real-time features.
🔗 Visit Qbix ServerDescription
Running a PHP website normally means wiring together at least two separate pieces of software — a web server like nginx for static files and routing, and PHP-FPM to actually execute your PHP code — plus often a third piece for WebSocket connections if you need live updates. Qbix Server folds all of that into one PHP process.
Qbix Server is a pure-PHP web server handling static file serving (with ETag and caching), PHP execution via a fork-per-request architecture, and native WebSocket/Socket.IO support with shared-state "rooms" for multi-user real-time features, all in a single process. It adds automatic TLS with ACME certificate renewal, a live dashboard for health monitoring, zero-downtime hot reload, and copy-on-write memory optimization. The project claims 36,300 requests/second under keep-alive benchmarks versus nginx's 26,858 (about 35% faster) for its target PHP workloads, and argues its shared-nothing, fork-per-request model is safer than newer alternatives like FrankenPHP or Swoole that share process state between requests.
💬 Our review
The short version: if you're running a PHP application and want to simplify your stack — one process instead of nginx plus PHP-FPM plus a separate WebSocket server — while getting a credible performance claim over nginx, Qbix Server is worth benchmarking against your actual workload before switching.
It's positioned against FrankenPHP and Swoole, both of which also aim to modernize PHP serving, but Qbix Server's specific argument is a shared-nothing, fork-per-request architecture that avoids the state-leak risks those alternatives can introduce when process state persists across requests. The claimed 35% throughput advantage over nginx is a specific, testable number worth verifying on your own hardware and workload rather than taking at face value from a project with a modest 65-star GitHub following. Good fit for PHP teams who want infrastructure simplification and are comfortable evaluating a newer, less battle-tested project; the safer default for production at scale remains the well-proven nginx + PHP-FPM combination until this has more track record.
💰 Pricing
📊 Global score
🤖 AI-enriched data
100% gratuit et open-source (licence MIT)
Pros
Remplace nginx + PHP-FPM + serveur WebSocket par un seul processus
Performance revendiquée ~35% supérieure à nginx sur workloads PHP
TLS automatique avec renouvellement ACME intégré
Architecture shared-nothing jugée plus sûre que FrankenPHP/Swoole
Cons
Projet jeune, seulement 65 étoiles GitHub, peu de recul en production
Chiffres de performance à vérifier sur son propre workload avant de migrer
Moins éprouvé que nginx + PHP-FPM à grande échelle
Communauté et écosystème encore restreints
