1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # Debugging configuration file
- # Application PID File
- PidFile = /tmp/FrameworkBenchmarks/hhvm/hhvm.pid
- # Server settings
- Server {
- Port = 8080
- SourceRoot = /tmp/FrameworkBenchmarks/hhvm
- DefaultDocument = index.php
- }
- # Enable debug logging
- Log {
- UseSyslog = false
- Level = Verbose
- }
- # Enable jit for production mode
- Eval {
- Jit = true
- CheckSymLink = false
- }
- # Repo file
- Repo {
- Central {
- Path = /tmp/FrameworkBenchmarks/hhvm/.hhvm.hhbc
- }
- }
- # Setup basic rewrite
- VirtualHost {
- * {
- Pattern = .*
- RewriteRules {
- * {
- pattern = ^(.*)$
- to = $1.php
- qsa = true
- }
- }
- }
- }
|