为了账号安全,请及时绑定邮箱和手机立即绑定

yum安装nginx+php环境

标签:
PHP

安装nginx+php环境:

    1、使用yum安装nginx,php,php-fpm

        yum install nginx php-fpm php

    2、配置nginx的配置文件:

        vim /etc/nginx/conf.d/default.conf

        修改如下位置:

        location / {

                root   /usr/share/nginx/html;

                index  index.html index.htm index.php;//添加

               }

    3、设置nginx对php的支持:

         vim /etc/nginx/conf.d/default.conf

        修改:(去掉前面的“#”注释)      

    location ~ \.php$ {

        root           html;

        fastcgi_pass   127.0.0.1:9000;

        fastcgi_index  index.php;

       # fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

      #对照,注意修改,使用绝对路径

     fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$fastcgi_script_name;

        include        fastcgi_params;

    }

    4、设置php-fpm的配置:

         vim /etc/php-fpm.d/www.conf

        修改:

    ; RPM: apache Choosed to be able to access some dir as httpd

          ;user = apache

        user = nginx

    ;设置为nginx用户,这样nginx可以使用。

    ; RPM: Keep a group allowed to write in log dir.

    ;同理设置成nginx组

        ;group = apache

        group = nginx

    5、设置开机自启动:

          chkconfig php-fpm on

                               chkconfig  nginx on

                 6、启动服务:

                                 /etc/init.d/nginx start

                                 /etc/init.d/php-fpm start

                         或:

                                service php-fpm start

                                service mysqld start

                7、测试:

                        浏览器直接输入IP地址出现nginx欢迎界面,nginx安装成功

                        删除主页文件,自己加入phpinfo()函数测试

                        cd  /usr/share/nginx/html/

                         rm -f ./index.html

                        echo "<?php phpinfo(); ?>" > ./index.php

                        从新打开网页出现php详细的信息,nginx+php配置完成。

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消