openresty解析php

来源:互联网 发布:php是什么意思在奶粉中 编辑:程序博客网 时间:2024/04/20 07:16

openresty解析php

openresty解析php跟nginx配置基本一样,配置如下:
vim /usr/local/openresty/nginx/conf/nginx.conf
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;
}

将文件中的上段注释打开即可。
但是我配置之后对PHP脚本报404错误,之后将
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
修改为:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
即可正常运行。

0 0