nginx / HHVM 404, corrigido substituindo $ document_root por caminho absoluto, mas o redirecionamento adiciona caminho ao URL

1

Eu tive o mesmo problema descrito em esta pergunta e a solução de substituir $document_root por seu caminho absoluto funcionou até que os redirecionamentos adicionaram o caminho absoluto ao URL, como em:

EXPECTED http://domain/pma/
REALITY  http://domain/var/www/pma/

Estou prestes a tirar meu cabelo da frustração aqui. Por favor, ajude-me a não ficar careca. (Apesar de manter o cabelo na linha é um aborrecimento em si, mas você tem a idéia)

$ less /etc/nginx/conf.d/default.conf
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm index.php;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    include hhvm.conf;

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

$ less /etc/nginx/hhvm.conf
location ~ \.(hh|php)$ {
    fastcgi_keep_conn on;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include        fastcgi_params;
}
    
por Oxwivi 28.10.2015 / 13:06

1 resposta

1

A diretiva root está definida dentro de location , isso causa o seu problema.

Definir a diretiva root diretamente no nível de server define o valor adequado da variável $document_root , que também estará disponível dentro do hhvm.conf.

server {
    listen       80;
    server_name  localhost;

    root   /var/www;

    location / {
        index  index.php index.html index.htm;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    include hhvm.conf;
}

Então, nenhuma modificação é necessária no seu hhvm.conf , embora você possa fazer algumas limpezas lá também. .

    
por 28.10.2015 / 17:40