Home > Backend Development > PHP Tutorial > nginx 配备php环境

nginx 配备php环境

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 12:43:32
Original
939 people have browsed it

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;
        }
}

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template