HHVM 研究 配置 安装

HHVM 是............



启动 后台 WEB 模式



hhvm -m daemon -u www --config /home/hhvm_server.hdf



hhvm_server.hdf 配置文件


========================================================================


Server {

 Port = 9000

 SourceRoot = /var/www

}


Eval {

 Jit = true

 JitWarmupRequests=0

}


Log {

 Level = Error

 UseLogFile = true

 File = /var/log/hhvm/error.log

 Access {

   * {

     File = /var/log/hhvm/access.log

     Format = %h %l %u %t \"%r\" %>s %b

   }

 }

}


VirtualHost {

 * {

   Pattern = .*

   RewriteRules {

     dirindex {

       pattern = ^/(.*)/$

       to = $1/index.php

       qsa = true

     }

   }

 }

}


StaticFile {

 FilesMatch {

   * {

     pattern = .*\.(dll|exe)

     headers {

       * = Content-Disposition: attachment

     }

   }

 }

 Extensions {

   css = text/css

   gif = image/gif

   html = text/html

   jpe = image/jpeg

   jpeg = image/jpeg

   jpg = image/jpeg

   png = image/png

   tif = image/tiff

   tiff = image/tiff

   txt = text/plain

 }

}

=======================================================================================




启动fastcgi  模式

hhvm --mode server -vServer.Type=fastcgi -vServer.Port=9999 -vAdminServer.Port=9001



需要配合 Nginx 加载  

你可能感兴趣的:(安装,配置,hhvm)