config.hdf 902 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # main configuration file
  2. # Application PID File
  3. PidFile = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter/hhvm.pid
  4. # Server settings
  5. Server {
  6. Port = 9001
  7. Type = fastcgi
  8. SourceRoot = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter
  9. DefaultDocument = index.php
  10. }
  11. # Disable logging completely
  12. Log {
  13. UseLogFile = false
  14. UseSyslog = false
  15. Level = Error
  16. #File = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter/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 = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter/.hhvm.bbhc
  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. }