1.Nginx代理服务基本概述

1.代理一词往往并不陌生, 该服务我们常常用到如(代理理财、代理租房、代理收货等等),如下图所示
05.Nginx反向代理服务 - 图1

2.在没有代理模式的情况下,客户端和Nginx服务端,都是客户端直接请求服务端,服务端直接响应客户端。
05.Nginx反向代理服务 - 图2
3.那么在互联网请求里面, 客户端往往无法直接向服务端发起请求, 那么就需要用到代理服务, 来实现客户端和服务通信,如下图所示
05.Nginx反向代理服务 - 图3

2.Nginx代理服务常见模式

那Nginx作为代理服务, 按照应用场景模式进行总结,代理分为正向代理、反向代理
正向代理,(内部上网) 客户端<—>代理->服务端
05.Nginx反向代理服务 - 图4
反向代理,用于公司集群架构中,客户端->代理<—>服务端
05.Nginx反向代理服务 - 图5
5.正向与反向代理的区别

区别在于形式上服务的”对象”不一样 正向代理代理的对象是客户端,为客户端服务 反向代理代理的对象是服务端,为服务端服务

3.Nginx代理服务支持协议

1.Nginx作为代理服务,可支持的代理协议非常的多,具体如下图
05.Nginx反向代理服务 - 图6
2.如果将Nginx作为反向代理服务,常常会用到如下几种代理协议,如下图所示
05.Nginx反向代理服务 - 图7
3.反向代理模式与Nginx代理模块总结如表格所示

反向代理模式 Nginx配置模块
http、websocket、https ngx_http_proxy_module
fastcgi ngx_http_fastcgi_module
uwsgi ngx_http_uwsgi_module
grpc ngx_http_v2_module

4.Nginx反向代理配置语法

1.Nginx代理配置语法

  1. Syntax: proxy_pass URL;
  2. Default:
  3. Context: location, if in location, limit_except
  4. http://localhost:8000/uri/
  5. http://192.168.56.11:8000/uri/
  6. http://unix:/tmp/backend.socket:/uri/

2.url跳转修改返回Location[不常用]参考URL

  1. Syntax: proxy_redirect default;
  2. proxy_redirect off;proxy_redirect redirect replacement;
  3. Default: proxy_redirect default;
  4. Context: http, server, location

3.添加发往后端服务器的请求头信息, 如图

  1. Syntax: proxy_set_header field value;
  2. Default: proxy_set_header Host $proxy_host;
  3. proxy_set_header Connection close;
  4. Context: http, server, location
  5. # 用户请求的时候HOST的值是www.bgx.com, 那么代理服务会像后端传递请求的还是www.bgx.com
  6. proxy_set_header Host $http_host;
  7. # 将$remote_addr的值放进变量X-Real-IP中,$remote_addr的值为客户端的ip
  8. proxy_set_header X-Real-IP $remote_addr;
  9. # 客户端通过代理服务访问后端服务, 后端服务通过该变量会记录真实客户端地址
  10. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

4.代理到后端的TCP连接、响应、返回等超时时间, 如图

  1. #nginx代理与后端服务器连接超时时间(代理连接超时)
  2. Syntax: proxy_connect_timeout time;
  3. Default: proxy_connect_timeout 60s;
  4. Context: http, server, location
  5. #nginx代理等待后端服务器的响应时间
  6. Syntax: proxy_read_timeout time;
  7. Default: proxy_read_timeout 60s;
  8. Context: http, server, location
  9. #后端服务器数据回传给nginx代理超时时间
  10. Syntax: proxy_send_timeout time;
  11. Default: proxy_send_timeout 60s;
  12. Context: http, server, location

5.proxy_buffer代理缓冲区, 如图

  1. #nignx会把后端返回的内容先放到缓冲区当中,然后再返回给客户端,边收边传, 不是全部接收完再传给客户端
  2. Syntax: proxy_buffering on | off;
  3. Default: proxy_buffering on;
  4. Context: http, server, location
  5. #设置nginx代理保存用户头信息的缓冲区大小
  6. Syntax: proxy_buffer_size size;
  7. Default: proxy_buffer_size 4k|8k;
  8. Context: http, server, location
  9. #proxy_buffers 缓冲区
  10. Syntax: proxy_buffers number size;
  11. Default: proxy_buffers 8 4k|8k;
  12. Context: http, server, location

6.Proxy代理网站常用优化配置如下,将配置写入新文件,调用时使用include引用即可

  1. [root@Nginx ~]# vim /etc/nginx/proxy_params
  2. proxy_set_header Host $http_host;
  3. proxy_set_header X-Real-IP $remote_addr;
  4. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  5. proxy_connect_timeout 30;
  6. proxy_send_timeout 60;
  7. proxy_read_timeout 60;
  8. proxy_buffering on;
  9. proxy_buffer_size 32k;
  10. proxy_buffers 4 128k;

7.代理配置location时调用, 方便后续多个Location重复使用

  1. location / {
  2. proxy_pass http://127.0.0.1:8080;
  3. include proxy_params;
  4. }

5.Nginx反向代理场景实践

Nginx反向代理配置实例
05.Nginx反向代理服务 - 图8

1.环境准备

角色 外网IP(NAT) 内网IP(LAN) 主机名
Proxy eth0:10.0.0.5 eth1:172.16.1.5 lb01
web01 eth1:172.16.1.7 web01

2.web01服务器, 配置一个网站,监听在8080,此时网站仅172网段的用户能访问

  1. [root@web01 ~]# cd /etc/nginx/conf.d/
  2. [root@web01 conf.d]# vim web.conf
  3. server {
  4. listen 8080;
  5. server_name localhost;
  6. location / {
  7. root /code_8080;
  8. index index.html;
  9. deny 10.0.0.0/24;
  10. allow all;
  11. }
  12. }
  13. [root@web01 conf.d]# mkdir /code_8080
  14. [root@web01 conf.d]# echo "web01-7...." >/code_8080/index.html
  15. [root@web01 conf.d]# systemctl restart nginx

2.proxy代理服务器, 配置监听eth0的80端口,使10.0.0.0网段的用户,能够通过代理服务器访问到后端的172.16.1.7的8080端口站点内容

  1. [root@lb01 ~]# cd /etc/nginx/conf.d/
  2. [root@lb01 conf.d]# cat proxy_web_node1.conf
  3. server {
  4. listen 80;
  5. server_name nginx.oldboy.com;
  6. location / {
  7. proxy_pass http://172.16.1.7:8080;
  8. include proxy_params;
  9. }
  10. }
  11. [root@lb01 conf.d]# systemctl enable nginx
  12. [root@lb01 conf.d]# systemctl start nginx