简介
Nginx官网 Nginx是一款高性能的HTTP服务器和反向代理服务器,同时支持IMAP/POP3/SMTP代理服务
什么是Nginx
Nginx是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/pop3)代理服务器,在BSD-like 协议下发行。由俄罗斯的程序设计师伊戈尔·西索夫使用C语言开发,其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有,百度、京东、新浪、网易、腾讯、淘宝等。
nginx应用场景
- http服务器,Nginx是一个http服务,可以独立提供http服务。可以做网页静态服务器。
- 虚拟主机。可以实现在一台服务器虚拟出多个网站,例如个人网站使用的虚拟主机。
- 反向代理,负载均衡。当网站的 访问量达到一定程度后,单台服务器不能满足用户的请求时,需要用多台服务器集群可使用Nginx做反向代理,并且多台服务器可以平均分担负载,不会因为某台服务器负载高宕机而某台服务器闲置的情况。
nginx安装
首先 创建文件 制作自动安装脚本 1、vim openresty.sh
yum install -y pcre-devel openssl-devel gcc curl
cd /usr/local/
wget https://openresty.org/download/openresty-1.17.8.2.tar.gz
cd /usr/local/
tar -zxvf openresty-1.17.8.2.tar.gz
cd /usr/local/
mv openresty-1.17.8.2 openresty
cd /usr/local/openresty/
./configure --with-luajit \
--without-http_redis2_module \
--with-http_iconv_module
cd /usr/local/openresty/
make && make install
2、赋予执行文件
chmod +x openresty.sh
3、运行脚本即可
./openresty.sh
4、然后修改环境
vim /etc/profile
export PATH=/usr/local/openresty/nginx/sbin:$PATH
source /etc/profile
至此安装完成,可以在 cd /usr/local/openresty/ 目录下找到nginx 启动
./nginx
访问服务器ip显示如图,则表示nginx安装成功
nginx配置文件详解
nginx的配置文件在conf目录下的nginx.conf文件,我们使用cp nginx.conf nginx.conf.back 命令先将初始的配置文件进行备份,防止我们后续操作改坏。
模块详解
配置文件主要分为六个区域: main(全局设置)作用域是全局 events(nginx工作模式) upstream(负载均衡服务器设置) http(http设置) server(主机设置) location(URL匹配)
配置文件详解
worker_processes 1;
events {
use epoll;
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
upstream spring {
server:192.168.1.106:8081 max_fails=3 fail_timeout=30s weight=5;
ip_hash;
}
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;
}
}
}
再来一份文字版的配置文件描述
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 {
use epoll;
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;
root /Users/hk/www;
index index.php index.html index.htm;
charset utf-8;
access_log logs/host.access.log main;
aerror_log logs/host.error.log main;
location / {
root html;
index index.html index.htm;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location /jyb {
proxy_pass http://qurt/;
proxy_read_timeout 1800s;
proxy_set_header Host $host:$server_port;
proxy_set_header X-real-ip $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /python/ {
include uwsgi_params;
uwsgi_pass 127.0.0.1:33333;
}
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;
}
location / {
root /home/hk/;
index index.html index.htm;
}
location /static/ {
alias /var/static/;
}
location ~ /\.ht {
deny all;
}
}
server {
listen 8000;
listen somename:8080;
server_name somename alias another.alias;
location / {
root html;
index index.html index.htm;
}
}
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;
}
}
upstream server_group {
ip_hash;
server 192.168.123.1:80;
server 192.168.123.2:80 down;
server 192.168.123.3:8080 max_fails=3 fail_timeout=20s;
server 192.168.123.4:8080;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://server_group/;
}
}
}
nginx指定文件路径有两种方式root和alias,这两者的用法区别,使用方法总结了。
root与alias主要区别在于nginx如何解释location后面的uri,这会使两者分别以不同的方式将请求映射到服务器文件上。
[root]
语法:root path
默认值:root html
配置段:http、server、location、if
[alias]
语法:alias path
配置段:location
root实例:
location ^~ /t/ {
root /www/root/html/;
}
如果一个请求的URI是/t/a.html时,web服务器将会返回服务器上的/www/root/html/t/a.html的文件。
alias实例:
location ^~ /t/ {
alias /www/root/html/new_t/;
}
如果一个请求的URI是/t/a.html时,web服务器将会返回服务器上的/www/root/html/new_t/a.html的文件。注意这里是new_t,
因为alias会把location后面配置的路径丢弃掉,把当前匹配到的目录指向到指定的目录。
注意:
1. 使用alias时,目录名后面一定要加"/"。
2. alias在使用正则匹配时,必须捕捉要匹配的内容并在指定的内容处使用。
3. alias只能位于location块中。(root可以不放在location中)
nginx代理
修改配置文件为
upstream spring {
server 192.168.1.106:8081;
}
server {
listen 80;
server_name nginx.test.com;
..........省略
}
location / {
proxy_pass http://spring/;
root html;
index index.html index.htm;
}
我用的springboot搭建的demo 修改完配置文件执行以下操作:
cd /usr/local/openresty/nginx/sbin
./nginx -t
./nginx -s reload
接下来我们访问:http://nginx.test.com/spring/hello/initializr,显示成功
nginx负载均衡
负载均衡的意思是在服务器集群中,需要有一台服务器作为调度者,客户端所有的请求都由调度者接收,调度者再根据每台服务器的负载情况,将请求分配给对应的服务器去处理。在这个过程中,调度者如何合理分配任务,保证所有服务器将性能充分发挥,从而保证服务器集群的整体性能最优,这就是负载均衡的问题了。
nginx负载均衡的方式
轮询
轮询 方式是nginx负载默认的方式,顾名思义,所有的请求都按照时间的顺序分配到不同的服务器上,如果某个服务宕机,可以自动剔除,我这里使用springboot分别启用了3个服务分别为8081、8082、8083,配置文件增加如下配置即可。
upstream spring {
server 192.168.1.106:8081;
server 192.168.1.106:8082;
server 192.168.1.106:8083;
}
效果如下: 第一次访问: 第二次访问: 第三次访问:
权重
权重 指定每个服务的权重比例,weight访问比率成正比,通常用于后端服务器性能不统一,将性能好的分配权重高发挥服务器的最大性能,如下配置后8081服务的访问比率是8082的2倍。
upstream spring {
server 192.168.1.106:8081 weight=2;
server 192.168.1.106:8082 weight=1;
}
共刷新3次效果如下: 第一次: 第二次: 第三次:
iphash
每个请求都根据访问ip的hash结果进行分配,经过这样的处理,每个访客固定访问一个后端服务,如下配置(ip_hash可以和weight配合是借用)
upstream spring {
ip_hash;
server 192.168.1.106:8081 weight=2;
server 192.168.1.106:8082 weight=1;
}
因为每次访问的IP都是一样的所以,每次的访问的后台服务都是固定的效果如下:
nginx 限流熔断
令牌桶算法
算法思想是:
- 令牌以固定的速率产生,并缓存到令牌桶中;
- 令牌桶放满时,多余的令牌被丢弃
- 请求要消耗等比例的令牌才能被处理
- 令牌不够时,请求被缓存。
漏桶算法
算法思想是:
- 水(请求)从上方倒入桶中,从水桶下方流出(被处理);
- 来不及流出的水被存放在水桶中(缓冲),以固定的塑速率流出;
- 水桶满后水溢出(丢弃)。
- 这个算法的核心是:缓存请求、匀速处理、多余的请求被直接丢弃。相比令牌桶算法不同之处在于它不但有一直桶,还有一个队列,这个桶是用来存放令牌的,队列才是用来存放请求的。
从作用上来说,漏桶和令牌桶算法最明显区别就是是否允许突发流量的处理,漏桶算法能够强行限制数据的实时传输速率,对突发流量不做额外处理;而令牌桶算法能够在限制数据的平均速率的同时允许某种程度的突发传输
Nginx按请求速率模块使用的是漏桶算法,即能够强行保证请求的实时处理不会超出设置的阈值。
案例
配置文件中http模块增加:
limit_req_zone $binary_remote_addr zone=spring:10m rate=2r/s;
limit_req zone=spring;
location / {
proxy_pass http://spring/;
root html;
index index.html index.htm;
limit_req zone=spring;
}
保存后重启服务 当访问过快时出现,访问效果如下: 但是我们生产中不会这样匀速,很多情况下是在某个时刻请求很多我们就可以使用缓存,将超出的请求缓存起来,匀速请求我们修改以下设置
location / {
proxy_pass http://spring/;
root html;
index index.html index.htm;
limit_req zone=spring burst=4
}
访问效果如下:当请求过快时会等待请求前面请求处理完再进行处理 我们因为加了缓存可以看出当我们请求过多时,请求时间过长这样用户体验不好,那我们就要给更改为,请求进入了缓存就能够进行处理,我们更改配置如下:
location / {
proxy_pass http://spring/;
root html;
index index.html index.htm;
limit_req zone=spring burst=5 nodelay;
}
访问效果: 当请求过快时,会返回一个错误页面这样很不友好,我们可以返回一个自定义状态
location / {
proxy_pass http://spring/;
root html;
index index.html index.htm;
limit_req zone=spring burst=5 nodelay;
limit_req_status 598;
}
访问过快时效果:
nginx热备部署
那么当我们服务集群其中的主服务宕机了,nginx就要进行服务的主备切换 修改配置如下:
upstream spring {
server 192.168.1.106:8081;
server 192.168.1.106:8082 backup;
}
正常访问效果: 当主节点宕机之后再次访问效果: 当主节点再次启动会将请求再次转到master节点上
nginx安全认证
ngx_http_auth_basic_module允许通过使用"HTTP基本身份认证"协议验证用户名和密码来限制对资源的访问。坦白点来说,如果想对某目录设置访问权限,可以使用ngx_http_auth_basic_module提供的功能。
?
???
???
???
??auth_basic_user_file
???
???
???
???
name1:password1
name2:password2:comment
name3:password3
1234
密码支持以下类型:
· 使用crypt()函数加密。可以使用Apache Http Server发行版中的“htpasswd”实用程序或“openssl passwd”命令生成。
· 使用基于MD5的密码算法(apr1)的Apache变体进行散列;可以使用相同的工具生成。
· 由RFC2307中描述的"{scheme}data"语法(1.0.3+)指定。当前实现方案包括文本(用于示例,不应使用)、SHA(1.3.13)(SHA-1哈希文本,不应使用)、SSHA(SHA-1加盐哈希,被OpenLDAP、Dovecot等软件包使用)。
htpasswd 生成密码文件
htpasswd是开源Http服务器Apache Http Server的一个命令工具,所以本机如果没有该命令,需要先安装。
yum install httpd-tools -y
1
htpasswd指令用来创建和更新用于基本认证的用户认证密码文件。htpasswd指令必须对密码文件有读写权限,否则会返回错误码。
htpasswd参数列表:
参数 | 参数说明 |
---|
-b | 密码直接写在命令行中,而非使用提示输入的方式 | -c | 创建密码文件,若文件存在,则覆盖文件重新写入 | -n | 不更新密码文件,将用户名密码进行标准输出 | -m | 使用MD5算法对密码进行处理 | -d | 使用CRYPT算法对密码进行处理 | -s | 使用SHA算法对密码进行处理 | -p | 不对密码进行加密处理,使用明文密码 | -D | 从密码文件中删除指定用户记录 |
htpasswd生成Nginx密码文件:
[root@sun vhost]htpasswd -c -d /usr/local/openresty/nginx/conf/nginxpasswd ops //创建web认证账号,ops为用户名
New password: ******* //认证密码
Re-type new password: ******** //再次确认认证密码
Adding password for user ops
此时查看/usr/local/openresty/nginx/conf/nginxpasswd文件:
Securitit:$apr1$nuJ/GIEt$nH8z8kk0EFVq5oo9.qRzI/
1
若要在已有Nginx密码文件中追加用户,则无需-c参数:
htpasswd -b /usr/local/nginx/conf/nginxpasswd Csdn 111111
1
此时查看/usr/local/openresty/nginx/conf/nginxpasswd文件:
Securitit:$apr1$nuJ/GIEt$nH8z8kk0EFVq5oo9.qRzI/
Csdn:$apr1$1IWZsiJl$q1K5CwAboegG1LO18Jdta0
12
基本身份认证模块 示例
基于默认nginx.conf进行修改,使用上面生成的密码文件进行认证:
worker_processes 1;
error_log logs/error.log;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name securitit;
location / {
auth_basic "Please Input UserName And Password!";
auth_basic_user_file nginxpasswd;
}
}
}
展示效果:
输入上述操作设置的用户名密码即可访问:
|