config-debug.hdf 777 B

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