我知道这不是一个普遍的问题,但是我似乎无法以某种方式找到直接的答案.有人能够尽可能直接地回答这个问题吗?
我的Nginx(提供静态文件)和HHVM(从控制台中的hhvm index.PHP)工作正常,但是我无法通过Nginx访问.PHP而没有得到404
情况:
HHVM 3.5.0
Nginx 1.7.9
我在/etc/Nginx/conf.d/default.conf中有这个
server {
listen 80;
server_name localhost;
location / {
root /var/www;
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;
}
在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;
}
最佳答案
原文链接:/nginx/532434.html