nginx下载php文件而不是执行它们(HHVM)

时间:2015-04-09 14:30:43

标签: php nginx hhvm

我正在尝试设置HHVM来执行我的PHP代码。我正在使用Apache,但我切换到nginx,我几乎让它工作了。但是,当我尝试访问index.php时,它将下载文件而不是执行/提供它。这是我的配置,在配置并随后重新启动我的nginx服务后运行usr/share/hhvm/install_fastcgi

server {
        listen 80;
        listen [::]:80;

        root /var/www/domain.com/public_html;
        index index.php index.html index.htm;

        server_name domain.com www.domain.com;

        location ~ \.php$ {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_index index.php;
            include fastcgi_params;
        }
}

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我修好了。我只需要包含hhvm.conf文件,然后执行try_files内容。这是我的新配置:

server {
    listen 80;
    listen [::]:80;

    root /var/www/domain.com/public_html;
    index index.php index.html index.htm;

    server_name domain.com www.domain.com;

    include hhvm.conf;

    location ~ \.php$ {
        try_files $uri $uri/ /index.php;
    }
}