Nginx引言
服务器搭建集群后:
问题1:客户端到底要将请求发送给哪台服务器
问题2:如果所有客户端的请求都发送给了服务器1
问题3:客户端发送的请求可能是申请动态资源的,也有申请静态资源的
在搭建集群后,使用Nginx做反向代理:
客户端访问Nginx,由Nignx做代理。
正向代理: (由客户端决定)
1.正向代理服务是由客户端设立的
2.客户端了解代理服务器和目标服务器都是谁
3.帮助实现突破访问权限,提高访问的速度,对目标服务器隐藏客户端的ip地址。
反向代理:
1.反向代理服务器是配置在服务端的
2.客户端不知道访问的到底是哪一台服务器
3.达到负载均衡,并且可以隐藏服务器真正的ip地址
Nginx的配置文件
配置文件:
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
# 以上同城为全局块
# worker_processes的数值越大,Nginx的并发能力就越强
# error_log代表Nginx错误日志存放的位置
# pid是Nginx运行的一个标识
events {
worker_connections 1024;
}
# events块
# worker_connections的数值越大,Nginx的并发能力就越强
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
# http块
# include代表引入一个外部文件
# include /etc/nginx/mime.types; mime.types中存放着大量媒体类型
# include /etc/nginx/conf.d/*.conf; 引入了conf.d下以.conf为结尾的配置文件
conf.d目录下只有一个default.conf文件,内容如下:
server {
listen 80;
listen [::]:80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
# location块
# root:将接受到的请求根据/usr/share/nginx/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 /usr/share/nginx/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;
#}
}
# server块
# listen代表Nginx监听的端口号
# server_name代表Nginx接受请求的IP
Nginx反向代理:
准备一个目标服务器
启动tomcat服务器
编写nginx的配置文件(/opt/docker_nginx/conf.d/default.conf),通过Nginx访问到tomcat服务器
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
proxy_pass http://ncthz.top:8080/;
}
#proxy_pass http 后的参数为Tomcat的url
}
关于Nginx的location路径映射
优先级关系:
(location = ) > (location /xxx/yyy/zzz) > (location ^~) > (location ,*) > (location /起始路径) > (location /)
# 1. = 匹配
location / {
#精准匹配,主机名后面不能带能和字符串
#例如www.baidu.com不能是www.baidu.com/id=xxx
}
#2. 通用匹配
location /xxx {
#匹配所有以/xxx开头的路径
#例如127.0.0.1:8080/xxx xxx可以为空,为空则和=匹配一样
}
#3. 正则匹配
location ~ /xxx {
#匹配所有以/xxx开头的路径
}
#4. 匹配开头路径
location ^~ /xxx/xx {
#匹配所有以/xxx/xx开头的路径
}
#5. 匹配结尾路径
location ~* \.(gif/jpg/png)$ {
#匹配以.gif、.jpg或者.png结尾的路径
}
修改/opt/docker_nginx/conf.d/default.conf如下
server {
listen 80;
listen [::]:80;
server_name localhost;
location /index {
proxy_pass http://ncthz.top:8081/; #tomcat首页
}
location ^~ /CR/ {
proxy_pass http://ncthz.top:8080/CR/; #毕设前台首页
}
location / {
proxy_pass http://ncthz.top:8080/CRAdmin/; #毕设后台首页
}
}
#访问ncthz.top/index可以进入tomcat首页
#访问ncthz.top/CR/XXX可以进入毕设前台首页
#访问ncthz.top或者ncthz.top:80可以进入毕设后台首页
Nginx负载均衡
Nginx为我们默认提供了三种负载均衡的策略:
1.轮询:
将客户端发起的请求,平均分配给每一台服务器
2.权重:
会将客户端的请求,根据服务器的权重值不同,分配不同的数量
3.ip_hash:
基于发起请求的客户端的ip地址不同,他始终会将请求发送到指定的服务器上
就是说如果这个客户端的请求的ip地址不变,那么处理请求的服务器将一直是同一个
轮询
想实现Nginx轮询负载均衡机制只需要修改配置文件(upstream )如下:
upstream my_server{
server ncthz.top:8080;
server ncthz.top:8081;
}
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
proxy_pass http://my_server/; #tomcat首页
}
}
多次刷新页面,根据版本号我们可以发现我们进入的是不同的tomcat。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-xfPWHe71-1607245489070)(C:\Users\dell\Desktop\nginx.assets\image-20201013171017457.png)]
权重
实现权重的方式:在配置文件中upstream块中加上weight
upstream my_server{
server ncthz.top:8080 weight=10;
server ncthz.top:8081 weight=2;
}
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
proxy_pass http://my_server/; #tomcat首页
}
}
ip_hash
实现ip_hash方式:在配置文件upstream块中加上ip_hash;
upstream my_server{
ip_hash;
server ncthz.top:8080 weight=10;
server ncthz.top:8081 weight=2;
}
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
proxy_pass http://my_server/; #tomcat首页
}
}
Nginx动静分离
Nginx的并发能力公式:
worker_processes * worker_connections / 4|2 = Nginx最终的并发能力
动态资源需要/4,静态资源需要/2(静态资源放在Nginx服务器下,客户端请求Nginx,Nginx请求服务器,再依次相应)
Nginx通过动静分离来提升Nginx的并发能力,更快的给用户响应。
version: '3.1'
services:
nginx:
restart: always
image: daocloud.io/library/nginx:latest
container_name: nginx
ports:
- 80:80
volumes:
- /opt/docker_nginx/conf.d/:/etc/nginx/conf.d //动态资源的配置文件
- /opt/docker_nginx/html/:/usr/share/nginx/html //静态资源的配置文件
动态资源:
#配置如下
location / {
proxy_pass 路径;
}
静态资源:
修改nginx的配置文件:
在/opt/docker_nginx/html下新建一个index.html
在index.html里面随便写点东西展示
修改nginx的配置文件
location / {
root /usr/share/nginx/html;
index index.html;
}
#配置如下
location / {
root 静态资源路径;
index 默认访问路径下的什么资源;
autoindex on;#代表展示静态资源的全部内容,以列表的形式展开
}