1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # main configuration file
- # Application PID File
- PidFile = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter/hhvm.pid
- # Server settings
- Server {
- Port = 9001
- Type = fastcgi
- SourceRoot = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter
- DefaultDocument = index.php
- }
- # Disable logging completely
- Log {
- UseLogFile = false
- UseSyslog = false
- Level = Error
- #File = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter/error.log
- }
- # Enable jit for production mode
- Eval {
- Jit = true
- CheckSymLink = false
- }
- # Repo file
- Repo {
- Central {
- Path = /home/vagrant/FrameworkBenchmarks/frameworks/PHP/codeigniter/.hhvm.bbhc
- }
- }
- # Setup basic rewrite
- VirtualHost {
- * {
- Pattern = .*
- RewriteRules {
- * {
- pattern = ^(.*)$
- to = $1.php
- qsa = true
- }
- }
- }
- }
|