config-debug.hdf 691 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Debugging configuration file
  2. # Application PID File
  3. PidFile = /tmp/FrameworkBenchmarks/hhvm/hhvm.pid
  4. # Server settings
  5. Server {
  6. Port = 8080
  7. SourceRoot = /tmp/FrameworkBenchmarks/hhvm
  8. DefaultDocument = index.php
  9. }
  10. # Enable debug logging
  11. Log {
  12. UseSyslog = false
  13. Level = Verbose
  14. }
  15. # Enable jit for production mode
  16. Eval {
  17. Jit = true
  18. CheckSymLink = false
  19. }
  20. # Repo file
  21. Repo {
  22. Central {
  23. Path = /tmp/FrameworkBenchmarks/hhvm/.hhvm.hhbc
  24. }
  25. }
  26. # Setup basic rewrite
  27. VirtualHost {
  28. * {
  29. Pattern = .*
  30. RewriteRules {
  31. * {
  32. pattern = ^(.*)$
  33. to = $1.php
  34. qsa = true
  35. }
  36. }
  37. }
  38. }