暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

Nginx:一款高性能的反向代理服务器

宇宙湾 2020-03-21
310

Nginx 是什么?

Nginx™ [engine x] is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server

环境搭建

下载

 在 Nginx Archive 下载页面,下载 nginx-1.13.12.tar.gz 安装包

安装依赖

  1. $ yum -y install openssl openssl-devel

  2. $ yum -y install pcre-devel

复制

编译安装

  1. $ tar zxvf nginx-1.13.12.tar.gz

  2. # 必须要跳转到 nginx 安装目录下

  3. $ cd nginx-1.13.12

  4. $ ./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/nginx.conf

  5. $ make -j4 && make -j4 install

复制

启动

  1. $ cd /usr/local/nginx/

  2. $ sbin/nginx -c /usr/local/nginx/nginx.conf

复制
  1. $ ps -ef | grep nginx

复制
  1. root 107034 1 0 Oct31 ? 00:00:00 nginx: master process sbin/nginx

  2. nobody 107036 107034 0 Oct31 ? 00:00:00 nginx: worker process

  3. nobody 107266 107265 0 Oct31 ? 00:00:00 tsar --check --apache --cpu --mem --load --io --traffic --tcp --partition --nginx --swap

  4. root 107270 97588 0 Oct31 pts/1 00:00:00 grep nginx

复制

停止

  1. $ sbin/nginx -s stop

复制

校验

  1. $ curl localhost

复制
  1. <!DOCTYPE html>

  2. <html>

  3. <head>

  4. <title>Welcome to nginx!</title>

  5. <style>

  6. body {

  7. width: 35em;

  8. margin: 0 auto;

  9. font-family: Tahoma, Verdana, Arial, sans-serif;

  10. }

  11. </style>

  12. </head>

  13. <body>

  14. <h1>Welcome to nginx!</h1>

  15. <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>


  16. <p>For online documentation and support please refer to

  17. <a href="http://nginx.org/">nginx.org</a>.<br/>

  18. Commercial support is available at

  19. <a href="http://nginx.com/">nginx.com</a>.</p>


  20. <p><em>Thank you for using nginx.</em></p>

  21. </body>

  22. </html>

复制

修改配置文件

  1. $ vim nginx.conf

复制

重新加载配置文件

  1. $ sbin/nginx -s reload

复制

查看日志

  1. # 查看流量详情

  2. $ tail -f logs/access.log


  3. # 查看异常日志

  4. $ tail -f logs/error.log

复制

流量镜像

Upstream 模块

 通过 upstream
模块,可以将源地址(当前集群)和镜像地址(目标集群)分组

  1. upstream curr {

  2. server 192.168.0.101:8080;

  3. server 192.168.0.102:8080;

  4. keepalive 64;

  5. }


  6. upstream dest {

  7. server 192.168.0.103:8080;

  8. server 192.168.0.104:8080;

  9. keepalive 64;

  10. }

复制

Server 模块

 如下定义了当前 Nginx 进程( localhost
)监听的端口( 80

  1. server {

  2. listen 80;

  3. server_name localhost;

  4. # ...

  5. }

复制

注意观察 logs/error.log 日志,检查是否出现端口冲突的日志,以调整这里面的端口号

Location 模块

server
模块下的 location
模块,可以定义流量转发的规则, location/
会接受所有 Nginx 进来的流量,而 mirror/mirror;
会将流量转发到镜像地址,而 location/mirror
则定义了转发的规则

  1. location / {

  2. root html;

  3. index index.html index.htm;

  4. mirror /mirror;

  5. mirror_request_body on;

  6. proxy_pass http://curr;

  7. }


  8. location /mirror {

  9. internal;

  10. proxy_pass http://dest$request_uri;

  11. proxy_set_header X-Original-URI $request_uri;

  12. }

复制

完整示例

本地转发

  1. #user nginx;

  2. worker_processes auto;


  3. #error_log logs/error.log;

  4. #error_log logs/error.log notice;

  5. #error_log logs/error.log info;


  6. #pid logs/nginx.pid;


  7. events {

  8. worker_connections 1024;

  9. }


  10. http {

  11. include mime.types;

  12. default_type application/octet-stream;


  13. log_format main '$remote_addr - $remote_user [$time_local] "$request" '

  14. '$status $body_bytes_sent "$http_referer" '

  15. '"$http_user_agent" "$http_x_forwarded_for"';


  16. access_log logs/access.log main;

  17. sendfile on;


  18. keepalive_timeout 65;


  19. upstream curr {

  20. server localhost:8080;

  21. keepalive 64;

  22. }


  23. server {

  24. listen 80;

  25. server_name localhost;


  26. #charset koi8-r;


  27. #access_log logs/host.access.log main;


  28. location / {

  29. root html;

  30. index index.html index.htm;

  31. mirror_request_body on;

  32. proxy_pass http://curr;

  33. }


  34. error_page 500 502 503 504 /50x.html;

  35. location = /50x.html {

  36. root html;

  37. }

  38. }

  39. }

复制

集群间转发

  1. #user nginx;

  2. worker_processes auto;


  3. #error_log logs/error.log;

  4. #error_log logs/error.log notice;

  5. #error_log logs/error.log info;


  6. #pid logs/nginx.pid;


  7. events {

  8. worker_connections 1024;

  9. }


  10. http {

  11. include mime.types;

  12. default_type application/octet-stream;


  13. log_format main '$remote_addr - $remote_user [$time_local] "$request" '

  14. '$status $body_bytes_sent "$http_referer" '

  15. '"$http_user_agent" "$http_x_forwarded_for"';


  16. access_log logs/access.log main;

  17. sendfile on;


  18. keepalive_timeout 65;


  19. upstream curr {

  20. server 192.168.0.101:8080;

  21. server 192.168.0.102:8080;

  22. keepalive 64;

  23. }


  24. upstream dest {

  25. server 192.168.0.103:8080;

  26. server 192.168.0.104:8080;

  27. keepalive 64;

  28. }


  29. server {

  30. listen 80;

  31. server_name localhost;


  32. #charset koi8-r;


  33. #access_log logs/host.access.log main;


  34. location / {

  35. root html;

  36. index index.html index.htm;

  37. mirror /mirror;

  38. mirror_request_body on;

  39. proxy_pass http://curr;

  40. }


  41. location /mirror {

  42. internal;

  43. proxy_pass http://dest$request_uri;

  44. proxy_set_header X-Original-URI $request_uri;

  45. }


  46. error_page 500 502 503 504 /50x.html;

  47. location = /50x.html {

  48. root html;

  49. }

  50. }

  51. }

复制

轮询策略

RR

 按时间顺序逐一将请求发送到不同的服务器,并且服务器故障后,会被自动剔除

  1. upstream yuzhouwan {

  2. server 192.168.0.101:80 max_fails=3 fail_timeout=3s weight=9;

  3. server 192.168.0.102:80 max_fails=3 fail_timeout=3s weight=9;

  4. }

复制

Nginx 默认会采用 RR(round-robin)简单轮询策略

balance

 支持指定轮询的几率,参数 weight
的数值和访问几率成正比,常用于集群中服务器资源不均的场景

  1. upstream yuzhouwan {

  2. server 192.168.0.101:80 weight=6;

  3. server 192.168.0.102:80 weight=1;

  4. }

复制

ip_hash

 按访问 ip 的 hash 结果将请求发送到不同的服务器,这样每个访客固定访问一个后端服务器。可以在 Session 有状态情况下,避免请求被转发到不同的服务器后,需要重复登录的问题

  1. upstream yuzhouwan {

  2. ip_hash;

  3. server 192.168.0.101:80;

  4. server 192.168.0.102:80;

  5. }

复制

fair

 按服务器的响应时间来分配请求,响应时间短的优先分配

  1. upstream yuzhouwan {

  2. fair;

  3. server 192.168.0.101:80;

  4. server 192.168.0.102:80;

  5. }

复制

url_hash

 按访问 url 的 hash 结果来分配请求,可以充分发挥服务器上缓存的作用

bash upstream yuzhouwan{hash $request_uri;hash_method crc32;server192.168.0.101:80;server192.168.0.102:80;}

踩过的坑

client intended to send too large body

分析

 Nginx 默认不允许发送超过 1MB 的请求体,由 client_max_body_size
参数控制

解决

  1. $ vim nginx.conf

复制
  1. http {

  2. client_max_body_size 10M;

  3. # ...

  4. }

复制
  1. $ sbin/nginx -s reload

复制

补充

参数名含义默认值作用域
chunked_transfer_encoding
是否开启 HTTP/1.1 下的 chunked 编码onhttp, server, location
client_header_buffer_size
请求头的大小限制1khttp, server
client_body_timeout
读取请求体的超时限制60shttp, server, location


文章转载自宇宙湾,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论