日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Nginx >内容正文

Nginx

Nginx常见配置:负载均衡、限流、缓存、黑名单和灰度发布

發布時間:2023/12/9 Nginx 53 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Nginx常见配置:负载均衡、限流、缓存、黑名单和灰度发布 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、Nginx安裝(基于CentOS 6.5)

1.yum命令安裝

yum install nginx –y
(若不能安裝,執行命令yum install epel-release)

2. 啟動、停止和重啟

service nginx start
service nginx stop
service nginx restart
瀏覽器中 輸入服務器的 ip 地址,即可看到相應信息

3. 其他信息

rpm -ql nginx?來查看安裝路徑
yum remove nginx?來卸載?
nginx -s reload 配置熱更新?

二、Nginx負載均衡配置(/etc/nginx/nginx.conf)

  • 負載均衡配置
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 http { ???????…… ????upstream real_server { ???????server 192.168.103.100:2001 weight=1;??#輪詢服務器和訪問權重 ???????server 192.168.103.100:2002 weight=2; ????} ????server { ????????listen? 80; ????????location / { ????????????proxy_pass http://real_server; ????????} ????} }
    2.失敗重試配置
    1 2 3 4 upstream real_server { ???server 192.168.103.100:2001 weight=1 max_fails=2 fail_timeout=60s; ???server 192.168.103.100:2002 weight=2 max_fails=2 fail_timeout=60s; }

    意思是在fail_timeout時間內失敗了max_fails次請求后,則認為該上游服務器不可用,然后將該服務地址踢除掉。fail_timeout時間后會再次將該服務器加入存活列表,進行重試。

    三、Nginx限流配置

  • 配置參數
  • limit_req_zone指令設置參數?

    1 limit_req_zone $binary_remote_addr zone=mylimit:10m rate=10r/s;

    1)limit_req_zone定義在http塊中,$binary_remote_addr表示保存客戶端IP地址的二進制形式。
    2)Zone定義IP狀態及URL訪問頻率的共享內存區域。zone=keyword標識區域的名字,以及冒號后面跟區域大小。16000個IP地址的狀態信息約1MB,所以示例中區域可以存儲160000個IP地址。
    3)Rate定義最大請求速率。示例中速率不能超過每秒10個請求。

    2.設置限流

    1 2 3 4 location / { ????????limit_req zone=mylimit burst=20 nodelay; ????????proxy_pass http://real_server; }

    burst排隊大小,nodelay不限制單個請求間的時間

    3.不限流白名單

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 geo $limit { default????????????? 1; 192.168.2.0/24??0; } map $limit $limit_key { 1 $binary_remote_addr; 0?""; } limit_req_zone $limit_key zone=mylimit:10m rate=1r/s; location / { ????????limit_req zone=mylimit burst=1 nodelay; ????????proxy_pass http://real_server; }

    上述配置中,192.168.2.0/24網段的IP訪問是不限流的,其他限流。

    IP后面的數字含義:

    24表示子網掩碼:255.255.255.0

    16表示子網掩碼:255.255.0.0

    8表示子網掩碼:255.0.0.0

    四、Nginx緩存配置

  • 瀏覽器緩存
  • 靜態資源緩存用expire

    1 2 3 location ~*? .(jpg|jpeg|png|gif|ico|css|js)$ { ???expires 2d; }

    Response Header中添加了Expires和Cache-Control


    靜態資源包括(一般緩存)

    1)普通不變的圖像,如logo,圖標等
    2)js、css靜態文件
    3)可下載的內容,媒體文件

    協商緩存(add_header ETag/Last-Modified value)

    1)HTML文件
    2)經常替換的圖片
    3)經常修改的js、css文件
    4)基本不變的API接口

    不需要緩存

    1)用戶隱私等敏感數據

    2)經常改變的api數據接口

    2.代理層緩存

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //緩存路徑,inactive表示緩存的時間,到期之后將會把緩存清理 proxy_cache_path?/data/cache/nginx/?levels=1:2 keys_zone=cache:512m inactive = 1d max_size=8g; location / { ????location ~ \.(htm|html)?$ { ????????proxy_cache cache; ????????proxy_cache_key??? $uri$is_args$args;?????//以此變量值做HASH,作為KEY ????????//HTTP響應首部可以看到X-Cache字段,內容可以有HIT,MISS,EXPIRES等等 ????????add_header X-Cache $upstream_cache_status; ????????proxy_cache_valid 200 10m; ????????proxy_cache_valid any 1m; ????????proxy_pass? http://real_server; ????????proxy_redirect???? off; ????} ????location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ { ????????root?/data/webapps/edc; ????????expires????? 3d; ????????add_header Static Nginx-Proxy; ????} }

    ? ? ? ? 在本地磁盤創建一個文件目錄,根據設置,將請求的資源以K-V形式緩存在此目錄當中,KEY需要自己定義(這里用的是url的hash值),同時可以根據需要指定某內容的緩存時長,比如狀態碼為200緩存10分鐘,狀態碼為301,302的緩存5分鐘,其他所有內容緩存1分鐘等等。
    ? ? ? ? 可以通過purger的功能清理緩存。
    ? ? ? ? AB測試/個性化需求時應禁用掉瀏覽器緩存。

    五、Nginx黑名單

    1.一般配置

    1 2 3 4 5 6 7 location / { ????deny? 192.168.1.1; ????deny 192.168.1.0/24; ????allow 10.1.1.0/16; ????allow 2001:0db8::/32; ????deny? all; }

    2. Lua+Redis動態黑名單(OpenResty)

    1)安裝運行

    1 2 3 4 5 6 7 8 yum?install?yum-utils yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo yum?install?openresty yum?install?openresty-resty 查看 yum --disablerepo="*"?--enablerepo="openresty"?list available 運行 service openresty start

    2) 配置(/usr/local/openresty/nginx/conf/nginx.conf)

    1 2 3 4 5 6 7 8 9 10 lua_shared_dict ip_blacklist 1m; server { ????listen? 80; ????location / { ????????access_by_lua_file lua/ip_blacklist.lua; ????????proxy_pass http://real_server; ????} }

    lua腳本(ip_blacklist.lua)

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 local redis_host??? =?"192.168.1.132" local redis_port??? =?6379 local redis_pwd???? =?123456 local redis_db =?2 -- connection timeout?for?redis?in?ms. local redis_connection_timeout =?100 -- a?set?key?for?blacklist entries local redis_key???? =?"ip_blacklist" -- cache lookups?for?this?many seconds local cache_ttl???? =?60 -- end configuration local ip??????????????? = ngx.var.remote_addr local ip_blacklist????? = ngx.shared.ip_blacklist local last_update_time? = ip_blacklist:get("last_update_time"); -- update ip_blacklist from Redis every cache_ttl seconds: if?last_update_time == nil or last_update_time < ( ngx.now() - cache_ttl ) then ??local redis = require?"resty.redis"; ??local red = redis:new(); ??red:set_timeout(redis_connect_timeout); ??local ok, err = red:connect(redis_host, redis_port); ??if?not ok then ????ngx.log(ngx.ERR,?"Redis connection error while connect: "?.. err); ??else ????local ok, err = red:auth(redis_pwd) ????if?not ok then ??????ngx.log(ngx.ERR,?"Redis password error while auth: "?.. err); ????else ????????local new_ip_blacklist, err = red:smembers(redis_key); ????????if?err then ????????????ngx.log(ngx.ERR,?"Redis read error while retrieving ip_blacklist: "?.. err); ????????else ????????ngx.log(ngx.ERR,?"Get data success:"?.. new_ip_blacklist) ??????????-- replace the locally stored ip_blacklist?with?the updated values: ????????????ip_blacklist:flush_all(); ??????????for?index, banned_ip?in?ipairs(new_ip_blacklist)?do ????????????ip_blacklist:set(banned_ip,?true); ??????????end ??????????-- update time ??????????ip_blacklist:set("last_update_time", ngx.now()); ??????end ????end ??end end if?ip_blacklist:get(ip) then ??ngx.log(ngx.ERR,?"Banned IP detected and refused access: "?.. ip); ??return?ngx.exit(ngx.HTTP_FORBIDDEN); end

    六、Nginx灰度發布

  • 根據Cookie實現灰度發布
  • 根據Cookie查詢version值,如果該version值為v1轉發到host1,為v2轉發到host2,都不匹配的情況下轉發默認。

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 upstream host1 { ???server 192.168.2.46:2001 weight=1;??#輪詢服務器和訪問權重 ???server 192.168.2.46:2002 weight=2; } upstream host2 { ???server 192.168.1.155:1111? max_fails=1 fail_timeout=60; } upstream default { ???server 192.168.1.153:1111? max_fails=1 fail_timeout=60; } map $COOKIE_version $group { ???~*v1$ host1; ???~*v2$ host2; ???default default; } lua_shared_dict ip_blacklist 1m; server { ????listen? 80; ????#set $group "default"; ????#if ($http_cookie ~* "version=v1"){ ????#??? set $group host1; ????#} ????#if ($http_cookie ~* "version=v2"){ ????#??? set $group host2; ????#} ????location / { ????????access_by_lua_file lua/ip_blacklist.lua; ????????proxy_pass http://$group; ????} }

    2. 根據來路IP實現灰度發布

    1 2 3 4 5 6 7 8 9 server { ??…………… ??set?$group default; ??if?($remote_addr ~?"192.168.119.1") { ??????set?$group host1; ??} ??if?($remote_addr ~?"192.168.119.2") { ??????set?$group host2; ??}

    3. 更細粒度灰度發布

    可用lua腳本實現,參考開源項目:https://github.com/dayulxl/ABTestingGateway

    轉載于:https://www.cnblogs.com/ZenoLiang/p/10946126.html

    總結

    以上是生活随笔為你收集整理的Nginx常见配置:负载均衡、限流、缓存、黑名单和灰度发布的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。