nginx com hhvm - Não achado

1

Eu configurei o nginx com o hhvm, mas qualquer arquivo .php me retorna " Não encontrado " exceto index.php que me retorna em execução no HHVM versão 2.3.2 .

Algumas das minhas configurações

/ etc / nginx / sites-enable / default

location ~ \.php$ {
        root /usr/share/nginx/www;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME /usr/share/nginx/www$fastcgi_script_name;
        include        fastcgi_params;
}

/etc/hhvm/server.hdf

Server {
  Port = 80
  SourceRoot = /usr/share/nginx/www/
  DefaultDocument = index.php
}
    
por PJunior 05.01.2014 / 19:31

0 respostas