frankenphp
frankenphp copied to clipboard
🧟 The modern PHP app server
### What happened? I can't get FrankenPHP to compile with HTTP cache module: https://github.com/caddyserver/cache-handler (or other popular caddy modules) I'm building a WordPress Docker image where I'm hoping to beat...
### Describe you feature request **Is your feature request related to a problem? Please describe.** I was shoulder-surfing a colleague today while I had them install frankenphp for a quick...
### What happened? ``` cd ~ && git clone https://github.com/dunglas/frankenphp cd ~ && composer create-project laravel/laravel build-static-laravel ``` Add Caddyfile ``` { frankenphp order php_server before file_server } # need...
### What happened? Runing the command from https://frankenphp.dev/docs/static/#linux ``` docker buildx bake --load static-builder docker cp $(docker create --name static-builder dunglas/frankenphp:static-builder):/go/src/app/dist/frankenphp-linux-$(uname -m) frankenphp ; docker rm static-builder ``` Results in...
### What happened? My Symfony6 application can not start with the following error: ``` {"level":"error","ts":1711266796.1390681,"msg":"PHP Fatal error: Uncaught Error: Call to undefined function dirname() in /app/public/index.php:5\nStack trace:\n#0 {main}\n thrown in...
### What happened? Following days of investigations on load-balancing problems, we've found out that SSEs seem not working over HTTP/1 with frankenphp. Using caddy along with php-fpm works well (wait...
Hello! Does anyone know how to run multiple containers of FrankenPHP at the same time? I'd like to use it for local dev environment instead of XAMPP (WAMP/MAMP et al.)...
### What happened? i try to run my framework which uses shared Memory for some parts and found this error ### Build Type Docker (Debian Bookworm) ### Worker Mode Yes...
### What happened? In Worker mode, I ran into the problem that the context is shared between different requests - it looks like the headers of the previous request remain...
### What happened? Running Symfony app behind reverse proxy (caddy) in non-https mode results in crashes (both on dev and prod). My Caddyfile ``` { frankenphp order php_server before file_server...