美文网首页
Ubuntu16.04搭建Nginx+php7.0

Ubuntu16.04搭建Nginx+php7.0

作者: LeslieLiang | 来源:发表于2019-06-25 13:36 被阅读0次

    1. 安装Nginx

    apt-get install -y nginx
    

    安装完成之后即可通过访问ubuntu的ip地址浏览nginx的预设页面

    2. 安装php7.0及其常用模块

    apt-get install -y php7.0 php7.0-mysql php7.0-gd php7.0-xml php7.0-curl php7.0-zip
    

    3. 配置Nginx

    cd /etc/nginx/
    cp sites-available/default sites-available/default.bak
    vim sites-enabled/default
    

    sites-enabled/default文件需要修改的内容

    location ~ \.php$ {
                    include snippets/fastcgi-php.conf; # 取消该行注释
            #       # With php7.0-cgi alone:
            #       fastcgi_pass 127.0.0.1:9000;
            #       # With php7.0-fpm:
                    fastcgi_pass unix:/run/php/php7.0-fpm.sock; # 取消该行注释
     }
    

    有些博主的教程中关于上面配置文件的修改内容可能与笔者的不同,主要是fastcgi_pass 127.0.0.1:9000;和fastcgi_pass unix:/run/php/php7.0-fpm.sock;该取消哪一行的注释,关于这个下面会解释。
    不知道取消哪一行注释的请看/etc/php/7.0/fpm/pool.d/www.conf中listen的配置项

    两种情况,取消与之对应的注释即可
    # listen = /run/php/php7.0-fpm.sock
    # listen = 127.0.0.1:9000
    

    重启nginx

    /etc/init.d/nginx restart
    

    4. 测试

    vim /var/www/html/info.php
    

    info.php

    <?php
    phpinfo();
    ?>
    

    浏览器中访问ubuntu服务器ip


    相关文章

      网友评论

          本文标题:Ubuntu16.04搭建Nginx+php7.0

          本文链接:https://www.haomeiwen.com/subject/joetcctx.html