Go to file
Rob Landers 9ef3bd7c47
feat: add fastcgi_finish_request() support (#69)
* Add function to ext

* buggy af, but kinda working

* Get worker and regular mode working

* fix formatting

* add eol

* add eol

* 🤦

* properly generate file

* use sync.Once
2022-11-03 08:36:47 +01:00
.github ci: run tests with the race detector (#80) 2022-11-01 07:10:39 +01:00
C-Thread-Pool@d42cc5a2f7 feat: use threads instead of GoRoutines (#6) 2022-10-04 14:41:19 +02:00
caddy feat: rename DEBUG env var to CADDY_DEBUG (#79) 2022-11-03 08:33:34 +01:00
docs feat: rename DEBUG env var to CADDY_DEBUG (#79) 2022-11-03 08:33:34 +01:00
internal/testserver feat: use Zap for logging 2022-10-04 17:42:45 +02:00
testdata feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
.dockerignore feat: improve Dockerfile and add some docs (#15) 2022-10-13 18:05:22 +02:00
.gitignore fix: remove some more memory leaks in worker mode (#65) 2022-10-24 20:38:09 +02:00
.gitmodules feat: use threads instead of GoRoutines (#6) 2022-10-04 14:41:19 +02:00
cgi.go feat: add support for $_SERVER['PHP_SELF'] (#71) 2022-10-28 17:25:02 +02:00
CONTRIBUTING.md Fix CONTRIBUTING.md (#77) 2022-10-31 21:57:43 +01:00
docker-bake.hcl feat: add Alpine based Docker image (#43) 2022-10-21 15:23:23 +02:00
Dockerfile Use RC5 image (#74) 2022-10-31 11:13:17 +01:00
Dockerfile.alpine Use RC5 image (#74) 2022-10-31 11:13:17 +01:00
Dockerfile.dev fix: dev Docker image and various typos (#67) 2022-10-25 17:26:51 +02:00
frankenphp_arginfo.h feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
frankenphp_test.go feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
frankenphp.c feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
frankenphp.go feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
frankenphp.h feat: use threads instead of GoRoutines (#6) 2022-10-04 14:41:19 +02:00
frankenphp.png docs: update logo 2022-10-14 12:23:39 +02:00
frankenphp.stub.php feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01:00
go.mod docs: improve docs of the Go module (#25) 2022-10-15 11:54:42 +02:00
go.sum docs: improve docs of the Go module (#25) 2022-10-15 11:54:42 +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 docs: add WordPress example (#73) 2022-11-01 08:48:55 +01:00
recorder_test.go chore: improve tests and add missing file (#13) 2022-10-11 20:41:50 +02:00
worker_test.go fix: prevent panic when restarting crashed worker (#49) 2022-10-21 14:43:16 +02:00
worker.go feat: add fastcgi_finish_request() support (#69) 2022-11-03 08:36:47 +01: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 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