欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装

程序员文章站 2022-06-11 12:42:33
...
nginx安装
yum install -y nginx


nginx配置
配置前准备,创建一个自己的网站目录,我这里是在/根目录下创建,顺便把logs目录也创建了LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
mkdir -p /data/example/web/logs


1 修改nginx.conf
vi /etc/nginx/nginx.conf

LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 

2 修改fastcgi_params 注意,也可以不做这一步,但是在下面第3步中,要在location里面增加:
fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;

vi /etc/nginx/fastcgi_params

在fastcgi_param  SCRIPT_NAME                $fastcgi_script_name;
位置附近增加一行:
fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;


3 增加自己想要的server配置
vi /etc/nginx/conf.d/example.conf

LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 

4 测试配置文件是否正确
nginx -t


5 重启nginx服务
service nginx restart


6 在网站目录创建php或html文件
vi phpinfo.php
<?php
    phpinfo();
?>


7 修改windows下的hosts文件
LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 

加入一行:
192.168.7.224 example.debug.com


8 浏览器输入
http://example.debug.com/phpinfo.php


LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 

最后补充说明:
注意在上面第3步中的server配置,重定向了error_page页面显示内容
LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
这有什么用呢?输入错误的网址看看
http://example.debug.com/phpinfo

显示如下:
LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 

如果没有error_page重定向404,50x等网页错误,将会显示如下
LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • 大小: 33.9 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • 大小: 15.2 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • 大小: 6.4 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • 大小: 17.3 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • 大小: 5.7 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • 大小: 14.7 KB
  • LNMP(linux+nginx+mysql+php)服务器环境配置(三)nginx安装
            
    
    博客分类: centos操作系统 nginxlinuxphpphp-fpm 
  • 大小: 2.8 KB