search
HomeBackend DevelopmentPHP TutorialFrankenPHP: The Modern PHP App Server, written in Go

FrankenPHP is a modern PHP application server built on the Caddy web server, offering developers a powerful alternative to traditional setups like PHP-FPM and Nginx. In this article, I'll explore how FrankenPHP improves performance, simplifies deployment, and enhances security with cutting-edge features like worker mode, real-time event support, and automatic HTTPS. Whether you're working with Laravel, Symfony, WordPress, or other PHP frameworks, discover why FrankenPHP is quickly becoming the go-to solution for developers seeking to optimize their production environments.

If you're a PHP developer looking to improve your application’s performance, security, and deployment process, it's time to consider switching to FrankenPHP as your production web server. Built on the robust Caddy web server, FrankenPHP brings modern innovations that traditional setups like PHP-FPM and Nginx can’t match.

With features like worker mode, which keeps your app in memory for faster performance, and real-time event capabilities that allow seamless communication between your app and the browser, FrankenPHP can significantly boost your app's responsiveness and user experience. It also supports automatic HTTPS, HTTP/2, and HTTP/3, ensuring your app is secure and uses the latest web protocols without any additional configuration.

FrankenPHP also simplifies your deployment by packaging your app as a standalone binary, eliminating the need for managing multiple processes like PHP-FPM and Nginx. Whether you work with Laravel, Symfony, WordPress, or any other PHP framework, FrankenPHP will make your app faster, more efficient, and easier to manage.

For developers looking to streamline their workflow and deliver better performance to end users, switching to FrankenPHP is a smart move. Start exploring today and elevate your PHP projects to the next level.

FrankenPHP at a glance:

  • Caddy Webserver: Uses the official PHP executor embedded in a state-of-the-art web server: Caddy
  • Extensible: Compatible with PHP 8.2 , most PHP extensions and all Caddy modules.
  • Only one service: Designed with simplicity in mind: only one service, only one binary! FrankenPHP doesn’t need PHP-FPM, it uses its own SAPI specially handcrafted for Go web servers.
  • Easy deploy: Cloud Native app shipped as a Docker image. Compatible with Kubernetes, and all modern cloud platforms. It’s also possible to package your PHP app as a standalone, self-executable static binary.
  • Worker mode: Boot your application once and keep it in memory! It is ready to handle incoming requests in a few milliseconds.
  • 103 Early Hints: Early Hints are a brand new feature of the web platform that can improve website load times by 30%. FrankenPHP is the only PHP SAPI with Early Hints support!
  • Real-time: Built-in Mercure hub. Send events from your PHP apps to all connected browsers, they instantly receive the payload as a JavaScript event!
  • Brotli, Zstandard and Gzip compression: Modern compression formats are supported out-of-the-box.
  • Structured logging: Bring a more defined format and details to your logging.
  • Prometheus metrics and tracing: Built-in Prometheus support!
  • HTTP/2 & HTTP/3: Native support for HTTPS, HTTP/2 and HTTP/3.
  • HTTPS Automation: Automatic HTTPS certificate generation, renewal and revocation.
  • Graceful reload: Deploy your apps with zero downtime thanks to graceful reloads.
  • Supports PHP extension: FrankenPHP supports the most popular PHP extensions, including OPcache and XDebug.

FrankenPHP: The Modern PHP App Server, written in Go

One command to run them all

# Docker
docker run -v $PWD:/app -p 443:443 dunglas/frankenphp

# Static binary
./frankenphp php-server

# Command-line script
./frankenphp php-cli /path/to/your/script.php

Benefits of using FrankenPHP

There are many benefits to using FrankenPHP, including:

  • Improved performance: FrankenPHP can significantly improve the performance of your PHP app, especially in worker mode. Reduced complexity: FrankenPHP simplifies your deployment process by eliminating the need for separate PHP-FPM and Nginx processes.
  • Increased security: FrankenPHP automatically supports HTTPS, HTTP/2, and HTTP/3, which helps to keep your app secure.
  • More features: FrankenPHP offers several features that are not available in traditional PHP application servers, such as early hints and real-time capabilities.

Who should use FrankenPHP?

FrankenPHP is an excellent option for developers looking to enhance the performance, security, and simplicity of deploying their PHP applications. It is particularly well-suited for projects built with Symfony, Laravel, and WordPress.

Getting started with FrankenPHP

Starting with FrankenPHP is simple. Download the FrankenPHP binary from the website and follow the steps provided in the documentation. Additionally, there are numerous tutorials and blog posts available online to guide you through the process.

Conclusion

FrankenPHP is a robust and user-friendly application server designed for PHP. It enhances the performance, and security, and simplifies the deployment process of PHP applications. If you're seeking a cutting-edge solution to streamline your PHP development workflow, FrankenPHP is an excellent choice that offers both efficiency and modern features.

Additional resources
FrankenPHP website: https://frankenphp.dev/
FrankenPHP documentation: https://frankenphp.dev/docs/
FrankenPHP on GitHub: https://github.com/dunglas/frankenphp

The above is the detailed content of FrankenPHP: The Modern PHP App Server, written in Go. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.