您好,欢迎访问一九零五行业门户网

nginx 配备php环境

nginx 配置php环境:
nginx 配置php环境:
安装php php-fpm
cp /etc/php.ini /usr/local/php5.3.22/lib/
修改:/usr/local/php5.3.22/etc/php-fpm.conf
user = nobody
group = nobody
启动php-fpm
/usr/local/php5.3.22/sbin/php-fpm
查看是否启动了9000端口:
netstat -ntplu | grep 9000
配置nginx:
user  nobody;
worker_processes  1;
server
     {
      listen  80;
             server_name  localhost;
      location / {
             root   html;
             index  index.html index.htm index.php;
             }
location ~ \.php$ {
            root    /usr/local/nginx/html/php;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  script_filename  /usr/local/nginx/html/php$fastcgi_script_name;
            include        fastcgi_params;
        }
}
其它类似信息

推荐信息