config-debug.hdf 760 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. UseLogFile = true
  13. UseSyslog = false
  14. Level = Verbose
  15. File = /tmp/FrameworkBenchmarks/hhvm/error.log
  16. }
  17. # Enable jit for production mode
  18. Eval {
  19. Jit = true
  20. CheckSymLink = false
  21. }
  22. # Repo file
  23. Repo {
  24. Central {
  25. Path = /tmp/FrameworkBenchmarks/hhvm/.hhvm.hhbc
  26. }
  27. }
  28. # Setup basic rewrite
  29. VirtualHost {
  30. * {
  31. Pattern = .*
  32. RewriteRules {
  33. * {
  34. pattern = ^(.*)$
  35. to = $1.php
  36. qsa = true
  37. }
  38. }
  39. }
  40. }