HHVM with Nginx fastcgi not working properly

I would like to use HHVM through Nginx. (Ubuntu 12.04.2 LTS, PHP 5.3.10)

I followed the steps given here:
http://www.hhvm.com/blog/1817/fastercgi-with-hhvm

This is what my Nginx installation looks like:

server {
        listen  80;
        server_name demo1.dev
        server_name_in_redirect off;
        root /var/www/demo1;
        location / {
                index index.php;
                try_files $uri $uri/ @handler;
                expires 30d;
        }
        location @handler {
                rewrite / /index.php;
        }
        location ~ .php$ {
                fastcgi_keep_conn on;
                if (!-e $request_filename) { rewrite / /index.php last; }
                expires        off;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_param PHP_VALUE "error_log=/var/report/PHP.error.log";
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                include        fastcgi_params;
        }
        location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
                expires 1y;
                log_not_found off;
        }
}

I have a hhvm.php file that contains this:

function is_hhvm() {
    return defined('HHVM_VERSION');
}

if (is_hhvm()) {
    echo "HHVM is working\n";
} else {
    echo "HHVM is not working\n";
}

What am I doing wrong and how can I see if HHVM is working correctly?

UPDATE: Output: ps auxf | grep hhvm

root     15164  0.0  0.0   9360   660 pts/0    S+   13:55   0:00                          \_ grep --color=auto hhvm
www-data 15142  4.2  6.3 576564 122484 ?       Ss   13:54   0:01 /usr/bin/hhvm --config /etc/hhvm/server.hdf --user www-data --mode daemon
www-data 15154  7.0  6.3 580668 122636 ?       Ss   13:54   0:01 /usr/bin/hhvm --config /etc/hhvm/server.hdf --user www-data --mode daemon -vServer.Type=fastcgi -vServer.Port=9000 -vPidFile=/var/run/hhvm/hhvm-fastcgi.pid
+4
source share
2 answers

. php-fpm ngingx , ? , - . , hhvm-fastcgi, /etc/init.d/hhvm-fastcgi start, 9000, . ps auxf | grep hhvm, , .

+10

PHP5-FPM, HHVM?

, PHP5-FPM

service php5-fpm stop

/ HHVM

service hhvm restart

hhvm.php -, HHVM.

FETCH Google, . HHVM, HHVM.

https://udinra.com/blog/hhvm-fastcgi-nginx-speedup-php HHVM .

+3

All Articles