Nginx,由俄罗斯人 伊戈尔·赛索耶夫开发,并于2004年首次公开发布。
写这篇博文的时候,第一个想到的问题是,Nginx这几个字母搁一块该怎么读?
特地查了查,得到下面这句话:
nginx英文读音音标为:/’endʒɪneks/,它的正确发音读出单词engine x。
关于Nginx,网上有各种大同小异的解释,以下三种是大部分开发者对Nginx的定义:
1、Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器。
2、Nginx是一款轻量级的HTTP服务器,采用事件驱动的异步非阻塞处理方式框架,这让其具有极好的IO性能,时常用于服务端的反向代理和负载均衡。
3、Nginx是一款轻量级的web服务器、反向代理服务器,由于它的内存占用少,启动极快,高并发能力强,在互联网项目中应用广泛。
综上所述,总结了几个关键词:
轻量级
、web服务器
、事件驱动
、异步阻塞处理
什么是web服务器?
一般也称为HTTP服务器,nginx是现在世界上最主流的三个HTTP服务器之一,两外两个是Apache和IIS。
Nginx的优点?
占用内存少、启动速度快、并发能力强、安装简单、配置简洁
如何理解Nginx反向代理?
在理解代理之前,先解释一下正向代理。
举个被大多数人用到的例子 :
我们在国内有时候无法访问某些外国网站,这是可能需要一个VPN进行访问,这种方式就是找到一个可以访问国外网站的代理服务器,我们首先将请求发给代理服务器,由代理服务器去访问国外的某些网站,然后将访问到的数据返回给客户端。
这种情况就是正向代理。
正向代理有一个最大的特点,客户端明确的知道要访问的服务器地址,服务器只知道请求是来自那个代理服务器,无法知道来自哪个具体的客户端,也就是说,正向代理模式屏蔽隐藏了真是客户端信息。
反向代理正好反过来,请求的客户端信息是明确的,但是请求具体由哪台服务器处理就不明确了。
反向代理主要用于服务器集群分布式部署的情况,反向代理隐藏了服务器的信息,Ngxinx在这里扮演的就是反向代理服务器的角色,用户在客户端发出请求后,经过Nginx的处理,按照一定的规则分发给后端的业务处理服务器进行处理。
如何理解Nginx负载均衡?
首先理解什么是负载均衡,两个概念,什么是负载量?什么是均衡?
负载量:客户端发送的、nginx反向代理服务器接收到的请求数量
均衡:请求数量按照一定的规则分发到不同的服务器进行处理的规则,就是一种均衡规则
所以,负载均衡就是将服务器接收到的请求按照一定规则分发的过程。
Nginx通过轮询的方式实现负载均衡,也可以通过添加权重的方式,实现权重轮询。
Nginx在Windows下的使用
点击 Nginx官网 下载nginx:
windows系统用户推荐下载Stable version Windows稳定版,Linux用户可以下载nginx-1.20.2
Linux版
下载到本地之后直接解压,解压后的文件结构:
这是后可以直接点击nginx.exe运行Nginx,不过推荐使用cmd命令行运行: nginx.exe
nginx.conf文件
nginx.conf文件,是nginx的配置文件,反向代理和负载均衡就是在这个文件中进行配置,具体内容如下:
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
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;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
内容看起来很多,但是“#”开头的表示注释内容,去掉注释段落,精简之后的内容如下:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
从简化之后的配置项来看,nginx.conf文件可以分为三部分:
1、全局配置
worker_processes 1;
工作进程,这是 Nginx 服务器并发处理服务的关键配置,worker_processes 值越大,可以支持的并发处理量也越多,但是会受到硬件、软件等设备的制约,通常等于CPU数量或者2倍于CPU
2、events配置
events {
worker_connections 1024;
}
每个工作进程的最大连接数量。根据硬件调整,和前面工作进程配合起来用,尽量大,但是别把cpu跑到100%就行。每个进程允许的最多连接数,理论上每台nginx服务器的最大连接数为。worker_processes*worker_connections
3、http配置
在下面的配置中,通过 upstream test_server
配置项配置负载均衡,和proxy_pass http://test_server;
配置反向代理,当客户端访问http://xx:80时,通过nginx将请求分配给192.168.1.6:8080
,192.168.1.66:8080
,192.168.3.76:8081
三个不同的服务中,并且可以根据不同服务器的算力分配不同的权重,以此来实现负载均衡。
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
# 使用nginx作为代理服务器,监听到localhost:80端口请求后,通过proxy_pass反向代理方位192.168.1.66:8080 ,并通过weight配置不同服务器之间的轮询权重
upstream test_server {
server 192.168.1.66:8080 weight=1;
server 192.168.1.66:8080 weight=1;
server 192.168.3.76:8081 weight=3;
}
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
proxy_pass http://test_server;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
http配置部分是nginx配置中比较繁琐的部分,在这里可以设置HTTP服务器,配置反向代理和负载均衡功能,还可以设置包括文件引入、MIME-TYPE 定义、日志自定义、连接超时时间、单链接请求数上限等。
include mime.types;
设定mime类型,类型由mime.type文件定义;
sendfile on;
sendfile指令指定 nginx 是否调用sendfile 函数(zero copy 方式)来输出文件,对于普通应用,必须设为on。如果用来进行下载等应用磁盘IO重负载应用,可设置为off,以平衡磁盘与网络IO处理速度,降低系统uptime。
keepalive_timeout 120;
keepalive超时时间。
每次修改完nginx.conf文件配置之后,都需要使用命令重新加载nginx: nginx -s reload