Nginx的安装

在一个新的 centOS7.5 的系统中安装

1. 安装 Nginx

/etc/yum.repos.d/  目录下新建一个文件 名为  nginx.repo   输入以下内容并保存

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

说明  baseurl=http://nginx.org/packages/您当的系统/当前系统版7就可以,不用输入7.5/$basearch/

然后使用命令   yum -y install nginx   开始安装最新稳定版 Nginx

安装完成后  用命令 whereis nginx  查看nginx 的一些信息

 

启动Nginx  直接用命令  nguinx

 

WEB服务默认配置文件内容:

 

 WEB服务根目录 在   /usr/share/nginx/html/   

Nginx 安装目录在   /etc/nginx/

关于mysql 和 PHP 的安装 请参阅: https://www.cnblogs.com/pineconeguo/p/9896776.html

关联 Nginx 与 PHP 

1.php7.2 安装之后  再通过yum安装 fpm,并启动服务 

yum -y install php72w-fpm

service php-fpm start

2.在Nginx 的配置文件 里修改如下:

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

3.修改 default.conf  中的部分内容如下:

location ~ \.php$ {
#  root        html; 改成如下
    root        /usr/share/nginx/html;
    fastcgi_pass    127.0.0.1:9000;
    fastcgi_index   index.php;
#  fastcgi_param  SCRIPT_FILENAME /scripts$fastcgi_script_name; 改成如下
    fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include     fastcgi_params;
}

4.重启启动 Nginx

nginx -s reload

5.然后在 /usr/share/nginx/html 下新建一个php文件 ,测试一下 是否安装成功

Nginx  配置支持  ThinkPHP5 :

首先tp5的访问目录指向到webroot/public文件夹中。
thinkphp的url访问:http://serverName/index.php(或者其它应用入口文件)/模块/控制器/操作/[参数名/参数值...],这个需要支持pathinfo,Apache默认支持,而Nginx不支持。
1.php.ini中的配置参数cgi.fix_pathinfo = 1
2.修改nginx.conf文件。

1
2
3
4
5
6
7
8
9
10
11
location ~ \.php(.*)$ {
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                #下面两句是给fastcgi权限,可以支持 ?s=/module/controller/action的url访问模式
                fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                #下面两句才能真正支持 index.php/index/index/index的pathinfo模式
                fastcgi_param  PATH_INFO  $fastcgi_path_info;
                fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
                include        fastcgi_params;
        }

3. 去掉/index.php/
修改nginx.conf文件

1
2
3
4
5
6
7
8
9
location / {
            index  index.html index.htm index.php;
            #autoindex  on;
             
          if (!-e $request_filename) {
            rewrite  ^(.*)$  /index.php?s=/$1  last;
            break;
          }
        }

 

[ Nginx ]

在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:

1
2
3
4
5
location / {
   if (!-e $request_filename) {
        rewrite  ^(.*)$  /index.php?s=/$1  last;
    }
}

如果你的应用安装在二级目录,Nginx的伪静态方法设置如下,其中youdomain是所在的目录名称。

1
2
3
4
5
location /youdomain/ {
    if (!-e $request_filename){
        rewrite  ^/youdomain/(.*)$  /youdomain/index.php?s=/$1  last;
    }
}
posted @ 2019-03-11 15:59  Gosun  阅读(394)  评论(0编辑  收藏  举报