Hhvm
HHVM, as authors declare, is an open-source virtual machine designed for executing programs written in Hack and PHP. HHVM uses a just-in-time (JIT) compilation approach to achieve superior performance while maintaining the development flexibility that PHP provides.
HHVM runs much of the world’s existing PHP. Developers and hosts are adopting HHVM. We are aware of minor incompatibilities (please open issues when you find them), but we can run the top 20 Github PHP frameworks out of the box. The HHVM team, along with many wonderful community members, has made it a stated, high priority goal to run all existing PHP code existing out in the wild.
Installation
Install package hhvm-gitAUR in the AUR.
Running
To enable the HHVM service by default at start-up, run:
# systemctl enable hhvm
To start the HHVM service, run:
# systemctl start hhvm
With default configuration, HHVM serves fastcgi at localhost port 9000.
Making it work with a web server
Nginx
Edit /etc/nginx/nginx.conf
to serve .php
files through HHVM via fastcgi:
/etc/nginx/nginx.conf
.. location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } ..
Lighttpd
/etc/lighttpd/lighttpd.conf
.. fastcgi.server = ( ".php" => ( "localhost" => ( "host" => "127.0.0.1", "port" => "9000", "broken-scriptfilename" => "enable", ) ) ) ..
Restart lighttpd.service
to apply any changes.