Go to file
Kévin Dunglas 1f3007337d
feat: create a static build of FrankenPHP (#198)
* ci: create a static build of FrankenPHP

* try to use alpine

* path mapping

* cache and fixes

* fix

* fix include path

* fix include path

* fix include path

* switch to Docker

* fix github token

* cleanup

* various improvements

* macOS instructions

* fix GHA

* docs

* feat: mac static builds

* minor fix

* fix wd

* Apple silicon build

* Revert "Apple silicon build"

This reverts commit 7a2997e092.

* add opcache

* update builder

* upgrade to PHP 8.2

* switch to upstream static-php-cli, add intl
2023-09-12 22:08:19 +02:00
.github feat: create a static build of FrankenPHP (#198) 2023-09-12 22:08:19 +02:00
C-Thread-Pool fix: use SA_ONSTACK in C-Thread-Pool 2022-12-20 10:24:34 +01:00
caddy feat: improve default config 2023-09-12 16:13:52 +02:00
docs feat: create a static build of FrankenPHP (#198) 2023-09-12 22:08:19 +02:00
internal/testserver
testdata perf: reduce the number of calls to cgo to set the headers 2023-08-18 19:20:32 +02:00
.dockerignore ci: Docker images for various PHP versions 2023-07-17 10:18:33 +02:00
.gitignore fix: remove some more memory leaks in worker mode (#65) 2022-10-24 20:38:09 +02:00
alpine.Dockerfile chore: upgrade to Go 1.21 (#195) 2023-08-23 11:33:45 +02:00
cgi.go fix: ensure SERVER_PORT is always set 2023-07-18 14:58:22 +02:00
CONTRIBUTING.md ci: Docker images for various PHP versions 2023-07-17 10:18:33 +02:00
dev.Dockerfile ci: Docker images for various PHP versions 2023-07-17 10:18:33 +02:00
docker-bake.hcl feat: create a static build of FrankenPHP (#198) 2023-09-12 22:08:19 +02:00
Dockerfile chore: upgrade to Go 1.21 (#195) 2023-08-23 11:33:45 +02:00
frankenphp_arginfo.h feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
frankenphp_test.go perf: reduce the number of calls to cgo to set the headers 2023-08-18 19:20:32 +02:00
frankenphp.c fix: superfluous response.WriteHeader call 2023-08-24 12:23:59 +02:00
frankenphp.go feat: create a static build of FrankenPHP (#198) 2023-09-12 22:08:19 +02:00
frankenphp.h fix: frankenphp_update_server_context declaration 2023-07-17 10:18:33 +02:00
frankenphp.png
frankenphp.stub.php feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
go.mod chore: use Caddy 2.7 2023-08-04 17:51:27 +02:00
go.sum chore: use Caddy 2.7 2023-08-04 17:51:27 +02:00
LICENSE docs: add license (#24) 2022-10-15 11:21:21 +02:00
options.go docs: improve docs of the Go module (#25) 2022-10-15 11:54:42 +02:00
README.md test: better debug flags (#160) 2023-07-02 20:46:26 +02:00
recorder_test.go
static-builder.Dockerfile feat: create a static build of FrankenPHP (#198) 2023-09-12 22:08:19 +02:00
worker_test.go feat: add support for PHP timeouts on Linux (#128) 2023-03-05 15:47:20 +01:00
worker.go chore: clean multiple errors handling 2023-08-12 21:26:16 +02:00

FrankenPHP: Modern App Server for PHP

FrankenPHP

FrankenPHP is a modern application server for PHP built on top of the Caddy web server.

FrankenPHP gives superpowers to your PHP apps thanks to its stunning features: Early Hints, worker mode, real-time capabilities, automatic HTTPS, HTTP/2, and HTTP/3 support...

FrankenPHP works with any PHP app and makes your Symfony projects faster than ever thanks to provided integration with the worker mode (Laravel Octane support coming).

FrankenPHP can also be used as a standalone Go library to embed PHP in any app using net/http.

Learn more on frankenphp.dev and in this slide deck:

Slides

Getting Started

☢️ FrankenPHP is very experimental, don't use it in production yet, file bugs and write patches! ☢️

docker run -v $PWD:/app/public \
    -p 80:80 -p 443:443 \
    dunglas/frankenphp

Go to https://localhost, and enjoy!

Note: do not attempt to use https://127.0.0.1. Use localhost and accept the self-signed certificate. Caddy has an automatic TLS handling that auto-trusts some local-based hostnames like localhost, but it does not apply to IP addresses. More details on Caddy's "automatic https" docs.

Docs

Examples and Skeletons