Nginx网站服务

关于Nginx

  • 一款高性能、轻量级Web服务软件
  • 稳定性高
  • 系统资源消耗低
  • 对HTTP并发连接的处理能力高
  • 单台物理服务器可支持30000~50000个并发请求

nginx相对于apache的优点:

轻量级,同样起web 服务,比apache 占用更少的内存及资源 抗并发,nginx 处理请求是异步非阻塞的,而apache 则是阻塞型的,在高并发下nginx 能保持低资源低消耗高性能 高度模块化的设计,编写模块相对简单 社区活跃,各种高性能模块出品迅速 🥓🥓🥓🥓🥓🥓🥓🥓🥓🥓🥓

  1. 同步阻塞:你打电话告诉老板你要买某书,老板拿起电话听你说完就去查书,没有说话,你什么也不知道,在得到任何结果之前,你一直拿着电话干等,你此时什么也干不了。30分钟后老板直接把书送到你家,这时你才挂断电话。每次电话你都要得得到结果(书到家)后你才挂断电话,这是同步。你一直拿着电话等结果,这是阻塞。
  2. 同步非阻塞:你打电话告诉老板你要买某书,老板拿起电话后说“我不知道有没有货,现在去查”便挂了电话,又过了10分种你第二次打电话说你要买某书,老板拿起电话说完“还没有查到,你再等会儿”便挂断电话。挂断电话5分钟后老板查到有书,但并没有主动打电话告诉你。你再次等待10分钟后第三次电话老板问结果,老板说“书有了,我给你送到家”,你断挂电话。每次电话你都要得得到结果(去查->还没有查到->有货)后你才挂断电话,这是同步。你每隔10分钟打电话询问结果,这是非阻塞。
  3. 异步阻塞:你打电话过去问老板有没有某书,老板说“我不知道有没有货,现在去查,先挂了电话,有结果告诉你,你等我电话”就挂掉电话。等电话期间你什么也不干,老板主动给你发短信通知你结果书有了,5分钟后希望老板现在把书送来,你再次打电话让老板送书,老板马上送书上门。老板主动给你发短信,这是异步。等待老板的短信期间你什么也没干,这是阻塞。
  4. 异步非阻塞:你打电话过去后问老板有没有某书,老板说“好的,有货我直接给你送上门”就挂掉电话。然后你想干嘛干嘛,等老板门到后你看书。等待老板主动给你送书上门,这是异步。挂了电话后你就想干嘛干嘛,这是非阻塞。

apache 相对于nginx 的优点:

rewrite ,比nginx 的rewrite 强大 模块超多,基本想到的都可以找到 少bug ,nginx 的bug 相对较多 超稳定 存在就是理由,一般来说,需要性能的web 服务,用nginx 。如果不需要性能只求稳定,那就apache 吧

Nginx与Apache的差异

Nginx Apache
基于事件 基于流程
所有请求由一个线程处理 单个线程处理单个请求
避免子进程 基于子进程
在内存消耗和连接方面更好 一般
性能和可伸缩性不依赖于硬件 依赖于CPU和内存等硬件
支持热部署 不支持热部署
对于静态文件处理更具效率 一般
在反向代理场景更具优势 一般

编译安装Nginx服务

1、关闭防火墙将nginx所需软件包到/opt目录下

systemctl stop firewalld
systemctl disable firewalld
setenforce 0

2、安装依赖包

#nginx的配置及运行需要pcre、zlib等软件包的支持,因此需要安装这些安装的开发包,以便提供相应的库和头文件。
yum -y install pcre-devel zlib-devel gcc gcc-c++ make

3、创建运行用户、组

  • Nginx 服务程序默认以 nobody 身份运行,建议为其创建专门的用户账号,以便更准确地控制其访问权限
useradd -M -s /sbin/nologin nginx

4、编译安装Nginx

cd /opt
tar zxvf nginx-1.12.0.tar.gz -C /opt/

cd nginx-1.12.0/
./configure \
--prefix=/usr/local/nginx \				      #指定nginx的安装路径
--user=nginx \										#指定用户名
--group=nginx \										#指定组名
--with-http_stub_status_module						#启用 http_stub_status_module 模块以支持状态统计

make && make install

ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/		#让系统识别nginx的操作命令

5 、检查、启动、重启、停止nginx服务

1.nginx -t                #检查配置文件是否配置正确
2.nginx                   #启动
3.停止
 1)cat /usr/local/nginx/logs/nginx.pid #先查看nginx的PID号
 2)kill -3 <PID号>       #直接杀死
 3)kill -s QUIT <PID号>  #优雅的杀死
 4)killall -3 nginx
 5)killall -s QUIT nginx    
4.重载
kill -1 <PID号>
kill -s HUP <PID号>
killall -1 nginx
killall -s HUP nginx
5.日志分割,重新打开日志文件
kill -USR1 <PID号>
6.平滑升级
kill -USR2 <PID号>
7.新版本升级∶
1)tar -zxvf nginx-1.xx.xX. tar.gz
2)cd nginx-1.xx. xx
./configure \
--prefix=/usr/local/nginx \
--user=nginx \
--group=nginx \
--with-http_stub_status_module \
--with-http_ssl_module
3)make
4)mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx_old
5)cp objs/nginx /usr/local/nginx/sbin/nginx
6)make upgrade        #或者先 killall nginx ,再/usr/local/nginx/sbin/nginx

6、添加 Nginx 系统服务

方法一:以脚本的方式管理服务

vim /etc/init.d/nginx
#!/bin/bash
#chkconfig: - 99 20
#description:Nginx Service Control Script
COM="/usr/local/nginx/sbin/nginx"
PID="/usr/local/nginx/logs/nginx.pid"
case "$1" in
start)
  $COM
;;

stop)
  kill -s QUIT $(cat $PID)
;;

restart)
  $0 stop
  $0 start
;;

reload)
  kill -s HUP $(cat $PID)
;;

*)
echo "Usage: $0 {start|stop|restart|reload}"
exit 1

esac
exit 0

#为脚本文件添加执行权限
chmod +x /etc/init.d/nginx
#添加为系统服务
chkconfig --add nginx
#重启服务
systemctl stop nginx
systemctl start nginx
#systemctl restart nginx

方法二:

vim /lib/systemd/system/nginx.service
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
PIDFile=/usr/local/nginx/logs/nginx.pid
ExecStart=/usr/local/nginx/sbin/nginx
ExecrReload=/bin/kill -s HUP $MAINPID
ExecrStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target

chmod 754 /lib/systemd/system/nginx.service
systemctl start nginx.service
systemctl enable nginx.service

11.png12.png13.png14.png15.png16.png17.png18.png19.png20.png


认识Nginx服务的主配置文件 nginx.conf

1.全局块:配置影响nginx全局的指令。一般有运行nginx服务器的用户组,nginx进程pid存放路径,日志存放路径,配置文件引入,允许生成worker process数等。

2.events块:配置影响nginx服务器或与用户的网络连接,有每个进程的最大连接数,选取哪种事件驱动模型处理连接请求,是否允许同时接受多个网络连接,开启多个网络连接序列化等。

3.http块:可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。如文件引入,mime-type定义,日志自定义,石佛使用sendfile传输文件,连接超时时间,单连接请求数等。

4.server块:配置虚拟主机的相关参数,一个http中可以有多个server。

5location块:配置请求的路由,以及各种页面的处理情况。

编辑主配置文件

vim /usr/local/nginx/conf/nginx.conf

1、全局配置

#user nobody; 					#运行用户,若编译时未指定则默认为 nobody
worker_processes 1; 			#工作进程数量,可配置成服务器内核数 * 2
#error_log logs/error.log; 		#错误日志文件的位置
#pid logs/nginx.pid; 			#PID 文件的位置

2、I/O 事件配置

#12-15行左右
events {
    #使用 epoll 模型,2.6及以上版本的系统内核,建议使用epoll模型以提高性能
    use epoll;
    #每个进程处理 4096 个连接
    worker_connections 4096;
}
#如提高每个进程的连接数还需执行“ulimit -n 65535”命令临时修改本地每个进程可以同时打开的最大文件数。
#在Linux平台上,在进行高并发TCP连接处理时,最高的并发数量都要受到系统对用户单一进程同时可打开文件数量的限制(这是因为系统为每个TCP连接都要创建一个socket句柄,每个socket句柄同时也是一个文件句柄)。
#可使用ulimit -a命令查看系统允许当前用户进程打开的文件数限制.

uname -r 查看内核版本

3、HTTP 配置

http {
	##文件扩展名与文件类型映射表
    include       mime.types;

	##默认文件类型
    default_type  application/octet-stream;

	##日志格式设定
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

	##访问日志位置
    #access_log  logs/access.log  main;

	##支持文件发送(下载)
    sendfile        on;
 	##此选项允许或禁止使用socke的TCP_CORK的选项(发送数据包前先缓存数据),此选项仅在使用sendfile的时候使用
    #tcp_nopush     on;

	##连接保持超时时间,单位是秒
    #keepalive_timeout  0;
    keepalive_timeout  65;

	##gzip模块设置,设置是否开启gzip压缩输出
    #gzip  on;

##Web 服务的监听配置
server {
	##监听地址及端口
	listen 80; 
	##站点域名,可以有多个,用空格隔开
	server_name www.lisi.com;

	##网页的默认字符集
	charset utf-8;

	##根目录配置
	location / {
	
		##网站根目录的位置/usr/local/nginx/html
		root html;
	
		##默认首页文件名
		index index.html index.htm;
	}

	##内部错误的反馈页面
	error_page 500 502 503 504 /50x.html;
	##错误页面配置
	location = /50x.html {
		root html;
	}
}
}

4、日志格式设定:

$remote_addr与$http_x_forwarded_for用以记录客户端的ip地址;
$remote_user:用来记录客户端用户名称;
$time_local: 用来记录访问时间与时区;
$request: 用来记录请求的url与http协议;
$status: 用来记录请求状态;成功是200,
$body_bytes_sent :记录发送给客户端文件主体内容大小;
$http_referer:用来记录从那个页面链接访问过来的;
$http_user_agent:记录客户浏览器的相关信息;

通常web服务器放在反向代理的后面,这样就不能获取到客户的IP地址了,通过$remote_add拿到的IP地址是反向代理服务器的iP地址。反向代理服务器在转发请求的http头信息中,可以增加x_forwarded_for信息,用以记录原有客户端的IP地址和原来客户端的请求的服务器地址。

location常见配置指令,root、alias、proxy_pass
root(根路径配置)
请求www.lisi.com/test,会返回文件/usr/local/nginx/html/test/index.html
alias(别名配置)
请求www.lisi.com/test,会返回文件/usr/local/nginx/html/index.html

proxypass (反向代理配置)
#转发请求到http://127.0.0.1:8080/1.jpg
proxy_pass http://127.0.0.1:8080/;
#转发请求到http://127.0.0.1:8080/test/1.jpg
proxy_pass http://127.0.0.1:8080;

21.png

22.png

23.png

24.png

25.png

26.png


访问状态统计配置

1、先查看Nginx服务中是否包含 HTTP_STUB_STATUS 模块

/usr/local/nginx/sbin/nginx -V

2、修改 nginx.conf 配置文件,指定访问位置并添加 stub_status 配置

cd /usr/local/nginx/conf
cp nginx.conf nginx.conf.bak
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
  server {
    listen 80;
    server_name www.lisi.com;
    charset utf-8;
    location / {
      root html;
      index index.html index.php;
    }
    #添加stub_status配置
    location /status {
      stub_status on;
      access_log off;
    }
  }
}

3、重启服务,访问测试

systemctl restart nginx

浏览器访问 http://192.168.17.140/status
Active connections :表示当前的活动连接数;
server accepts handled requests :表示已经处理的连接信息,三个数字依次表示已处理的连接数、成功的TCP握手次数、 已处理的请求数。

补充:web状态监控脚本 31.png

32.png

33.png

34.png


基于授权的访问控制

1、生成用户密码认证文件

yum install -y httpd-tools
htpasswd -c /usr/local/nginx/passwd.db lisi
chown nginx /usr/local/nginx/passwd.db
chmod 400 /usr/local/nginx/passwd.db

2、修改主配置文件相对应目录,添加认证配置项

vim /usr/local/nginx/conf/nginx.conf
......
	server {
		location / {
		 ......
	      #添加认证配置
          auth_basic "secret";
          auth_basic_user_file /usr/local/nginx/passwd.db;
		}
	}	

3、重启服务,访问测试

nginx -t
systemctl restart nginx

浏览器访问 http://192.168.17.140或www.lisi.com

41.png

42.png

43.png

44.png

45.png


基于客户端的访问控制

访问控制规则如下:

  • deny IP/IP 段:拒绝某个 IP 或 IP 段的客户端访问。
  • allow IP/IP 段:允许某个 IP 或 IP 段的客户端访问。
  • 规则从上往下执行,如匹配则停止,不再往下匹配。
vim /usr/local/nginx/conf/nginx.conf
......
  server {
    location / {
    ......
    #添加控制规则
    #拒绝访问的客户端 IP
    deny 192.168.17.140;
    #允许其它IP客户端访问
    allow all;
    }
  }

systemctl restart nginx

基于域名的 Nginx 虚拟主机

1、为虚拟主机提供域名解析

echo "192.168.17.140 www.test1.com www.test2.com" >> /etc/hosts

2、为虚拟主机准备网页文档

mkdir -p /var/www/html/test1
mkdir -p /var/www/html/test2
echo "www.test1.com" > /var/www/html/test1/index.html
echo "www.test2.com" > /var/www/html/test2/index.html

3、修改Nginx的配置文件

vim /usr/local/nginx/conf/nginx.conf
......
http {
......
    server {
        listen 80;
        server_name  www.test1.com;
        charset utf-8;
        access_log logs/www.test1.access.log;
        
        location / {
            root   /var/www/html/test1;
            index  index.html index.php;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
	}
	
     server {
         listen 80;
         server_name www.test2.com;
         charset utf-8;
         access_log logs/www.test2.access.log;
         
         location / {
              root /var/www/html/test2;
              index index.html index.php;
         }
         
         error_page 500 502 503 504 /50x.html;
               location = 50x.html{
               root html;
               }
         }
}

4、重启服务,访问测试

#检查语法
nginx -t
systemctl restart nginx

#浏览器访问
http://www.test1.com/
http://www.test2.com/

51.png

52.png

53.png

54.png

55.png

56.png


基于IP 的 Nginx 虚拟主机

1、增加网卡,添加域名解析

ifconfig ens33:0 192.168.17.100 netmask 255.255.255.0

echo "192.168.17.140 www.test1.com" >> /etc/hosts
echo "192.168.17.100 www.test2.com" >> /etc/hosts

2、修改Nginx的配置文件

vim /usr/local/nginx/conf/nginx.conf
......
http {
......
  server {
    listen 192.168.17.140:80;
    server_name  www.test1.com;
    charset utf-8;
    access_log logs/www.test1.access.log;
    location / {
      root   /var/www/html/test1;
      index  index.html index.php;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
      root   html;
    }
  }
  server {
    listen 192.168.17.100:80;
    server_name www.test2.com;
    charset utf-8;
    access_log logs/www.test2.access.log;
    location / {
      root /var/www/html/test2;
      index index.html index.php;
    }
    error_page 500 502 503 504 /50x.html;
    location = 50x.html{
      root html;
    }
  }
}

3、重启服务,访问测试

systemctl restart nginx
#浏览器访问
http://192.168.17.140/
http://192.168.17.100/

61.png

62.png

63.png

64.png

65.png

66.png


基于端口的 Nginx 虚拟主机

vim /usr/local/nginx/conf/nginx.conf
......
http {
......
  server {
    listen 192.168.17.140:80;
    server_name  www.test1.com;
    charset utf-8;
    access_log logs/www.test1.access.log;
    location / {
      root   /var/www/html/test1;
      index  index.html index.php;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
      root   html;
    }
  }
  server {
    listen 192.168.163.10:8080;
    server_name www.test2.com;
    charset utf-8;
    access_log logs/www.test2.access.log;
    location / {
      root /var/www/html/test2;
      index index.html index.php;
    }
    error_page 500 502 503 504 /50x.html;
    location = 50x.html{
      root html;
    }
  }
}	

systemctl restart nginx
浏览器访问
http://192.168.184.30:8080
http://192.168.184.30:8888

71.png

72.png

73.png