Caddyfile 294 B

1234567891011121314151617181920212223
  1. {
  2. # Debug
  3. {$CADDY_DEBUG}
  4. frankenphp {
  5. #worker /path/to/your/runtime.php
  6. {$FRANKENPHP_CONFIG}
  7. }
  8. }
  9. :8080
  10. route {
  11. # FrankenPHP!
  12. # disable static files for this benchmark
  13. # by using php instead of php_server
  14. rewrite runtime.php
  15. php {
  16. root /symfony/public
  17. }
  18. }