博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7安装并配置nginx+php
阅读量:5110 次
发布时间:2019-06-13

本文共 1616 字,大约阅读时间需要 5 分钟。

  1. 安装nginx

    yum install nginx

  2. 设置nginx开启起动

    systemctl start nginx

  3. 测试
    访问http://你的域名或IP/
    803639-20160425163408845-1295758195.png
  4. 查看nginx安装位置

    whereis nginx

    nginx: /usr/sbin/nginx /etc/nginx /usr/share/nginx /usr/share/man/man3/nginx.3pm.gz /usr/share/man/man8/nginx.8.gz

  5. 安装php

    yum install php php-mysql php-fpm

    安装过程中经常会见到如下问题:

    2:postfix-2.10.1-6.el7.x86_64 有缺少的需求 libmysqlclient.so.18()(64bit)
    2:postfix-2.10.1-6.el7.x86_64 有缺少的需求 libmysqlclient.so.18(libmysqlclient_18)(64bit)
    解决方法:
    把php-mysql换成php-mysqlnd
    即执行

    yum install php php-mysqlnd php-fpm

  6. 配置php处理器

    vim /etc/php.ini

    查找cgi.fix_pathinfo
    将 ;cgi.fix_pathinfo=1改为cgi.fix_pathinfo=0
  7. 配置www.conf

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

    user = nobody
    group = nobody
    改为
    user = nginx
    group = nginx
    前提是已经创建了nginx用户和nginx组。
  8. 起动php-fpm

    systemctl start php-fpm

  9. 设置php-fpm开机启动

    systemctl enable php-fpm

  10. 配置nginx

    打开/etc/nginx/conf.d/default.conf,如果不存在则创建
    粘贴
    server {
    listen 80;
    server_name server_domain_name_or_IP;

    note that these lines are originally from the "location /" block

    root /usr/share/nginx/html;

    index index.php index.html index.htm;

    location / {

    try_files $uri $uri/ =404;
    }
    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
    root /usr/share/nginx/html;
    }

    location ~ .php$ {
    try_files $uri =404;
    root /usr/share/nginx/html;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi.conf;
    }
    }
  11. 重起nginx

    systemctl restart nginx

  12. 测试php

    创建/usr/share/nginx/html/index.php

    /usr/share/nginx/html/info.php

    输入以下内容:

    <?php phpinfo(); ?>

访问http://你的IP/index.php,正常情况下会出现803639-20160425165425845-512073858.png

转载于:https://www.cnblogs.com/cglWorkBook/p/5431571.html

你可能感兴趣的文章
免费的论文查重网站
查看>>
C语言程序第一次作业
查看>>
leetcode-Sort List
查看>>
phpcms
查看>>
中文词频统计
查看>>
[.net 面向对象编程基础] (19) LINQ基础
查看>>
Win10 虚拟桌面
查看>>
了解node.js
查看>>
想做移动开发,先看看别人怎么做
查看>>
Dynamics CRM 2013 初体验(1):系统的安装
查看>>
Ping其他电脑ping不通的解决方法
查看>>
Eclipse相关集锦
查看>>
虚拟化架构中小型机构通用虚拟化架构
查看>>
继承条款effecitve c++ 条款41-45
查看>>
[置顶] OGG-01091 Unable to open file (error 89, Invalid file system control data detected)
查看>>
linux 内核参数VM调优 之 参数调节和场景分析
查看>>
HTML+CSS学习笔记(九)
查看>>
笑谈人生的哲理和智慧
查看>>
【BZOJ2286】【SDOI2011】消耗战 [虚树][树形DP]
查看>>
【Foreign】Game [博弈论][DP]
查看>>