config.hdf 954 B

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