1f3007337d
* 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
|
||
---|---|---|
.github | ||
C-Thread-Pool | ||
caddy | ||
docs | ||
internal/testserver | ||
testdata | ||
.dockerignore | ||
.gitignore | ||
alpine.Dockerfile | ||
cgi.go | ||
CONTRIBUTING.md | ||
dev.Dockerfile | ||
docker-bake.hcl | ||
Dockerfile | ||
frankenphp_arginfo.h | ||
frankenphp_test.go | ||
frankenphp.c | ||
frankenphp.go | ||
frankenphp.h | ||
frankenphp.png | ||
frankenphp.stub.php | ||
go.mod | ||
go.sum | ||
LICENSE | ||
options.go | ||
README.md | ||
recorder_test.go | ||
static-builder.Dockerfile | ||
worker_test.go | ||
worker.go |
FrankenPHP: Modern App Server for PHP
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:
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
. Uselocalhost
and accept the self-signed certificate. Caddy has an automatic TLS handling that auto-trusts some local-based hostnames likelocalhost
, but it does not apply to IP addresses. More details on Caddy's "automatic https" docs.
Docs
- The worker mode
- Early Hints support (103 HTTP status code)
- Real-time
- Configuration
- Docker images
- Compile from sources
- Demo app (Symfony) and benchmarks
- Go library documentation
- Contributing and debugging