centos6.5下配置nginx,nginx页面能出现,php测试页面显示空白!!!_百度...
发布网友
发布时间:2022-04-23 21:35
我来回答
共1个回答
热心网友
时间:2022-04-08 02:59
1、php5.3以后版本可以配置php-fpm.conf
listen = 127.0.0.1:9002
2、启动php-fpm服务器
/etc/init.d/php-fpm start
3、netstat -ntlp检查9001端口是否启动
4、配置nginx
server
{
listen 80;
access_log /data/logs/nginx/access.log;
root /data/www ;
index index.php index.html index.htm;
location / {
expires 1d;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9002;
fastcgi_index index.php;
include fastcgi.conf;
}
}