config.hdf 807 B

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