亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

nginx實(shí)現(xiàn)動(dòng)靜分離的示例代碼

 更新時(shí)間:2019年12月30日 10:06:42   作者:夢(mèng)中淚  
這篇文章主要介紹了nginx實(shí)現(xiàn)動(dòng)靜分離的示例代碼,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

一、簡(jiǎn)單配置nginx的動(dòng)靜分離

假設(shè)web1為靜態(tài)服務(wù)器,web2為動(dòng)態(tài)服務(wù)器,node2做代理

1.1 根據(jù)目錄分開

web1只處理靜態(tài)請(qǐng)求

[root@web1 ~]# mkdir -p /var/www/www/image
[root@web1 ~]# yum -y install lrzsz
[root@web1 ~]# cd /var/www/www/image/
[root@web1 image]# rz
[root@web1 image]# ll
-rw-r--r--. 1 root root 156848 Mar 13 11:31 nhrzyx.png
[root@web2 ~]# vim /etc/httpd/conf/httpd.conf 
 DocumentRoot "/var/www/www"
[root@web2 ~]# systemctl restart httpd

web2只處理動(dòng)態(tài)請(qǐng)求

[root@web2 ~]# mkdir -p /var/www/www/dynamic
[root@web2 ~]# echo dynamic10 > /var/www/www/dynamic/index.html
[root@web2 ~]# vim /etc/httpd/conf/httpd.conf 
 DocumentRoot "/var/www/www"
[root@web2 ~]# systemctl restart httpd

訪問測(cè)試

http://172.25.254.134/image/nhrzyx.png

http://172.25.254.135/dynamic/index.html

1.2 通過請(qǐng)求分離

配置代理

[root@lb01 conf]# vim nginx.conf
worker_processes 1;
events {
  worker_connections 1024;
}
http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
upstream stack_pools {
    server 172.25.254.134:80 weight=5;
}
upstream dynamic_pools {
    server 172.25.254.135:80 weight=5;
}
  server {
    listen    80;
    server_name www.lbtest.com;
    location / {
      root  html;
      index index.html index.htm;
      proxy_set_header Host $host;
      proxy_pass http://dynamic_pools;
    }
    location /image/ {
      proxy_set_header Host $host;
    proxy_pass http://stack_pools;
    }
    location /dynamic/ {
      proxy_set_header Host $host;
    proxy_pass http://dynamic_pools;
    }
  }
}
[root@lb01 conf]# nginx -s reload

配置hosts ,瀏覽器訪問測(cè)試

172.25.254.131 www.lbtest.com

http://www.lbtest.com/image/nhrzyx.png

http://www.lbtest.com/dynamic/

1.3 根據(jù)擴(kuò)展名分離

[root@lb01 conf]# vim nginx.conf

worker_processes 1;
events {
  worker_connections 1024;
}
http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
upstream stack_pools {
    server 172.25.254.134:80 weight=5;
}
upstream dynamic_pools {
    server 172.25.254.135:80 weight=5;
}
  server {
    listen    80;
    server_name www.lbtest.com;
    location / {
      root  html;
      index index.html index.htm;
      proxy_set_header Host $host;
      proxy_pass http://dynamic_pools;
    }
    location ~ .*.(jpg|png|gif|css|js|swf|bmp|jsp|php|asp)$ {
    proxy_set_header Host $host;
    proxy_pass http://stack_pools;
    }
  }
}
[root@lb01 conf]# nginx -s reload

http://www.lbtest.com/image/nhrzyx.png 

1.4 根據(jù)客戶端標(biāo)識(shí)進(jìn)行分離

http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
upstream stack_pools {
    server 172.25.254.134:80 weight=5;
}
upstream dynamic_pools {
    server 172.25.254.135:80 weight=5;
}
  server {
    listen    80;
    server_name www.lbtest.com;
    location / {
        if ($http_user_agent ~* "MSIE")
        {
            proxy_pass http://dynamic_pools;
        }
        if ($http_user_agent ~* "firefox")
        {
            proxy_pass http://stack_pools;
        }
    }
    proxy_set_header Host $host;
    }
}
[root@web1 image]# echo stack_web>> /var/www/www/test.html
[root@web1 image]# systemctl restart httpd

[root@web2 ~]# echo dynamic_web>>/var/www/www/test.html
[root@web2 ~]# systemctl restart httpd

分別使用IE和火狐瀏覽器訪問

http://www.lbtest.com/test.html

1.5 使用客戶端的pc和移動(dòng)分離

http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
upstream stack_pools {
    server 172.25.254.134:80 weight=5;
}
upstream dynamic_pools {
    server 172.25.254.135:80 weight=5;
}
  server {
    listen    80;
    server_name www.lbtest.com;
    location / {
        if ($http_user_agent ~* "iphone")
        {
            proxy_pass http://dynamic_pools;
        }
        if ($http_user_agent ~* "android")
        {
            proxy_pass http://stack_pools;
        }
    }
    proxy_set_header Host $host;
    }
}

分別使用安卓和iphone訪問測(cè)試

http://www.lbtest.com/test.html

二 、優(yōu)化

[root@node2 ~]# vim /etc/sysctl.conf

net.ipv4.tcp_fin_timeout = 2
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_keepalive_time =600
net.ipv4.ip_local_port_range = 4000 65000
net.ipv4.tcp_max_syn_backlog = 16348
net.ipv4.tcp_max_tw_buckets = 36000
net.ipv4.tcp_syn_retries = 1
net.ipv4.tcp_synack_retries = 1
net.ipv4.tcp_max_orphans = 16384
net.core.somaxconn = 16384
net.core.netdev_max_backlog = 18364

[root@node2 ~]# sysctl -p

簡(jiǎn)單介紹keepalive和nginx

配置keepalived實(shí)現(xiàn)nginx負(fù)載均衡的高可用

keepalive更適合于見得IP漂移,如果資源服務(wù)有控制,heartbeat更適合,比如存儲(chǔ)方向的高可用

三、 nginx反向代理的健康檢查

nginx做反向代理的時(shí)候,當(dāng)后端就的服務(wù)器出現(xiàn)宕機(jī)的時(shí)候,ngixn不能把這臺(tái)realserver剔除upstream的,所以還會(huì)把請(qǐng)求轉(zhuǎn)發(fā)到后端的這臺(tái)realserve上,雖然nginx可以在localtion中啟用proxy_next_upstream來解決返回給客戶的錯(cuò)誤頁面,但這個(gè)還會(huì)會(huì)把請(qǐng)求轉(zhuǎn)發(fā)轉(zhuǎn)給這臺(tái)服務(wù)器,然后再轉(zhuǎn)發(fā)別的服務(wù)器,這樣就浪費(fèi)了一次轉(zhuǎn)發(fā),借助淘寶團(tuán)隊(duì)開發(fā)的nginx模塊nginx_upstream_check_module來檢測(cè)后方的realserver的健康狀態(tài),如果后端服務(wù)器不可用,則所有的請(qǐng)求不轉(zhuǎn)發(fā)到這臺(tái)服務(wù)器

check interval=5000 rise=1 fall=3 timeout=4000;

3.1 直接添加到配置文件

[root@node2 ~]# vim /usr/local/nginx/conf/nginx.conf

worker_processes 1;
events {
  worker_connections 1024;
}
http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
upstream web_pools {
    server 172.25.254.134:80 weight=5;
    server 172.25.254.135:80 weight=5;
#    server 172.25.254.158:80 weight=5 backup;
check interval=5000 rise=1 fall=3 timeout=4000;

}
  server {
    listen    80;
    server_name www.lbtest.com;
    location / {
      # root  html;
      # index index.html index.htm;
      proxy_set_header Host $host;
      proxy_pass http://web_pools;
    }
  }
}

[root@node2 ~]# nginx -t

nginx: [emerg] unknown directive "check" in /usr/local/nginx/conf/nginx.conf:14
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed 

檢查失敗

下載nginx的模塊https://github.com/yaoweibin/nginx_upstream_check_module,使用nginx打上模塊的安裝,當(dāng)做nginx的升級(jí)

3.2 下載模塊

[root@node2 nginx-1.12.2]# yum -y install git

[root@node2 nginx-1.12.2]# git clone https://github.com/yaoweibin/nginx_upstream_check_module.git

[root@node2 nginx-1.12.2]# ll
drwxr-xr-x. 7 root root 4096 Apr 13 00:57 nginx_upstream_check_module
[root@node2 nginx-1.12.2]# cd nginx_upstream_check_module/

[root@node2 nginx_upstream_check_module]# ll
-rw-r--r--. 1 root root   0 Apr 13 00:57 CHANGES
-rw-r--r--. 1 root root  7921 Apr 13 00:57 check_1.11.1+.patch
-rw-r--r--. 1 root root  8330 Apr 13 00:57 check_1.11.5+.patch
-rw-r--r--. 1 root root  8060 Apr 13 00:57 check_1.12.1+.patch
-rw-r--r--. 1 root root  8054 Apr 13 00:57 check_1.14.0+.patch
-rw-r--r--. 1 root root  5483 Apr 13 00:57 check_1.2.1.patch
-rw-r--r--. 1 root root  7130 Apr 13 00:57 check_1.2.2+.patch
-rw-r--r--. 1 root root  7094 Apr 13 00:57 check_1.2.6+.patch
-rw-r--r--. 1 root root  6791 Apr 13 00:57 check_1.5.12+.patch
-rw-r--r--. 1 root root  8295 Apr 13 00:57 check_1.7.2+.patch
-rw-r--r--. 1 root root  8346 Apr 13 00:57 check_1.7.5+.patch
-rw-r--r--. 1 root root  8509 Apr 13 00:57 check_1.9.2+.patch
-rw-r--r--. 1 root root  6943 Apr 13 00:57 check.patch
-rw-r--r--. 1 root root  749 Apr 13 00:57 config
drwxr-xr-x. 2 root root   43 Apr 13 00:57 doc
-rw-r--r--. 1 root root  1709 Apr 13 00:57 nginx-sticky-module.patch
drwxr-xr-x. 2 root root   29 Apr 13 00:57 nginx-tests
-rw-r--r--. 1 root root 112010 Apr 13 00:57 ngx_http_upstream_check_module.c
-rw-r--r--. 1 root root  529 Apr 13 00:57 ngx_http_upstream_check_module.h
-rw-r--r--. 1 root root  2848 Apr 13 00:57 ngx_http_upstream_jvm_route_module.patch
-rw-r--r--. 1 root root 11509 Apr 13 00:57 README
drwxr-xr-x. 6 root root   79 Apr 13 00:57 test
-rw-r--r--. 1 root root  3342 Apr 13 00:57 upstream_fair.patch
drwxr-xr-x. 2 root root   81 Apr 13 00:57 util

3.3 打補(bǔ)丁

[root@node2 nginx_upstream_check_module]# cd ../

[root@node2 nginx-1.12.2]# yum -y install patch

注:因nginx版本更新,1.12以上版本的nginx,補(bǔ)丁為check_1.11.5+.patch

[root@node2 nginx-1.12.2]# patch -p0 < ./nginx_upstream_check_module/check_1.11.5+.patch

patching file src/http/modules/ngx_http_upstream_hash_module.c
patching file src/http/modules/ngx_http_upstream_ip_hash_module.c
patching file src/http/modules/ngx_http_upstream_least_conn_module.c
patching file src/http/ngx_http_upstream_round_robin.c
patching file src/http/ngx_http_upstream_round_robin.h

3.4 編譯安裝

[root@node2 nginx-1.12.2]# ./configure --prefix=/usr/local/nginx \
> --user=nginx --group=nginx \
> --with-http_ssl_module \
> --with-http_realip_module \
> --with-http_addition_module \
> --with-http_gzip_static_module \
> --with-http_stub_status_module \
> --with-http_sub_module \
> --with-pcre \
> --add-module=./nginx_upstream_check_module

出現(xiàn)一個(gè)新的目錄 為objs

[root@node2 nginx-1.12.2]# ll

drwxr-xr-x. 4 root  root   187 Apr 13 01:04 objs

[root@node2 nginx-1.12.2]# make

sed -e "s|%%PREFIX%%|/usr/local/nginx|" \
  -e "s|%%PID_PATH%%|/usr/local/nginx/logs/nginx.pid|" \
  -e "s|%%CONF_PATH%%|/usr/local/nginx/conf/nginx.conf|" \
  -e "s|%%ERROR_LOG_PATH%%|/usr/local/nginx/logs/error.log|" \
  < man/nginx.8 > objs/nginx.8
make[1]: Leaving directory `/usr/local/src/nginx-1.12.2'

[root@node2 nginx-1.12.2]# ll objs/

drwxr-xr-x. 3 root root   41 Apr 13 01:04 addon
-rw-r--r--. 1 root root  16895 Apr 13 01:04 autoconf.err
-rw-r--r--. 1 root root  42396 Apr 13 01:04 Makefile
-rwxr-xr-x. 1 root root 5993600 Apr 13 01:06 nginx  #nginx新的可執(zhí)行文件
-rw-r--r--. 1 root root  5341 Apr 13 01:06 nginx.8
-rw-r--r--. 1 root root  7202 Apr 13 01:04 ngx_auto_config.h
-rw-r--r--. 1 root root   657 Apr 13 01:03 ngx_auto_headers.h
-rw-r--r--. 1 root root  6412 Apr 13 01:04 ngx_modules.c
-rw-r--r--. 1 root root  87120 Apr 13 01:06 ngx_modules.o
drwxr-xr-x. 9 root root   91 Apr 3 22:38 src

備份就得ngxin,并拷貝新的nginx

[root@node2 nginx-1.12.2]# cd /usr/local/nginx/sbin/

[root@node2 sbin]# mv nginx nginx.bak

[root@node2 sbin]# cp /usr/local/src/nginx-1.12.2/objs/nginx /usr/local/nginx/sbin

[root@node2 sbin]# /usr/local/nginx/sbin/nginx -s stop

nginx: [emerg] getpwnam("nginx") failed

[root@node2 sbin]# id nginx

id: nginx: no such user

[root@node2 sbin]# useradd nginx

[root@node2 sbin]# id nginx

uid=1002(nginx) gid=1002(nginx) groups=1002(nginx)

[root@node2 sbin]# /usr/local/nginx/sbin/nginx -s stop

[root@node2 sbin]# /usr/local/nginx/sbin/nginx

[root@node2 ~]# nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

成功安裝

3.5 配置

worker_processes 1;
events {
  worker_connections 1024;
}
http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
upstream web_pools {
    server 172.25.254.134:80 weight=5;
    server 172.25.254.135:80 weight=5;
#    server 172.25.254.158:80 weight=5 backup;
check interval=5000 rise=1 fall=3 timeout=4000;

}
  server {
    listen    80;
    server_name www.lbtest.com;
    location / {
      proxy_set_header Host $host;
      proxy_pass http://web_pools;
    }
    location /nstatus{
    check_status;
    access_log off;
    }
  }
}
[root@node2 conf]# nginx -s reload

3.6 訪問測(cè)試

兩個(gè)狀態(tài)正常

關(guān)掉一個(gè)

[root@web1 image]# systemctl stop httpd

關(guān)掉兩個(gè)

[root@web2 ~]# systemctl stop httpd

開啟一個(gè)

[root@web1 image]# systemctl start httpd

[root@web2 ~]# systemctl restart httpd

成功實(shí)現(xiàn)后端檢查功能

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • 瀏覽器控制臺(tái)報(bào)錯(cuò)Failed to load module script:解決方法

    瀏覽器控制臺(tái)報(bào)錯(cuò)Failed to load module script:解決方

    這篇文章主要為大家介紹了瀏覽器控制臺(tái)報(bào)錯(cuò)Failed to load module script:解決方法,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11
  • Nginx如何根據(jù)前綴路徑轉(zhuǎn)發(fā)到不同的Flask服務(wù)

    Nginx如何根據(jù)前綴路徑轉(zhuǎn)發(fā)到不同的Flask服務(wù)

    這篇文章主要介紹了Nginx如何根據(jù)前綴路徑轉(zhuǎn)發(fā)到不同的Flask服務(wù),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-01-01
  • 服務(wù)器nginx配置ssl并http重定向到https方式

    服務(wù)器nginx配置ssl并http重定向到https方式

    這篇文章主要介紹了服務(wù)器nginx配置ssl并http重定向到https方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-12-12
  • NGINX服務(wù)器配置404錯(cuò)誤頁面轉(zhuǎn)向的方法

    NGINX服務(wù)器配置404錯(cuò)誤頁面轉(zhuǎn)向的方法

    這篇文章主要為大家詳細(xì)介紹了NGINX服務(wù)器配置404錯(cuò)誤頁面轉(zhuǎn)向的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-12-12
  • 簡(jiǎn)單談?wù)凬ginx基礎(chǔ)知識(shí)入門

    簡(jiǎn)單談?wù)凬ginx基礎(chǔ)知識(shí)入門

    Nginx(engine x)是一個(gè)高性能的HTTP服務(wù)器(其實(shí)不止HTTP服務(wù)器),一般主要用作負(fù)載均衡和反向代理,今天我們來簡(jiǎn)單學(xué)習(xí)下他的基礎(chǔ)配置知識(shí)
    2017-08-08
  • Windows設(shè)置nginx開機(jī)自啟動(dòng)的方法

    Windows設(shè)置nginx開機(jī)自啟動(dòng)的方法

    這篇文章主要介紹了Windows設(shè)置nginx開機(jī)自啟動(dòng)的方法,通過兩種方式實(shí)現(xiàn)nginx的開機(jī)自啟動(dòng):winws和window計(jì)劃程序,每種方式給大家介紹的非常詳細(xì)需要的朋友可以參考下
    2022-11-11
  • 基于Nginx的Mencached緩存配置詳解

    基于Nginx的Mencached緩存配置詳解

    這篇文章主要介紹了基于Nginx的Mencached緩存配置詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-06-06
  • Windows安裝nginx1.10.1反向代理訪問IIS網(wǎng)站

    Windows安裝nginx1.10.1反向代理訪問IIS網(wǎng)站

    這篇文章主要為大家詳細(xì)介紹了Windows安裝nginx1.10.1反向代理訪問IIS網(wǎng)站的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-11-11
  • nginx日志格式分析以及修改詳解

    nginx日志格式分析以及修改詳解

    Nginx日志對(duì)于統(tǒng)計(jì)、系統(tǒng)服務(wù)排錯(cuò)很有用,下面這篇文章主要給大家介紹了關(guān)于nginx日志格式分析以及修改的相關(guān)資料,文中通過實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2022-04-04
  • 基于Nginx+lua實(shí)現(xiàn)簡(jiǎn)單的XSS攻擊攔截

    基于Nginx+lua實(shí)現(xiàn)簡(jiǎn)單的XSS攻擊攔截

    WAF即web應(yīng)用防火墻,Nginx是一個(gè)主流的代理服務(wù),除了本身的Nginx日志,作為用戶肯定也支持對(duì)請(qǐng)求信息進(jìn)行操作,?很多都是通過在代理服務(wù)器上掛載規(guī)則特征,實(shí)現(xiàn)軟件層面的軟WAF進(jìn)行WEB防護(hù),本文主要給大家介紹了Nginx+Lua實(shí)現(xiàn)一個(gè)簡(jiǎn)單的XSS攻擊攔截,需要的朋友可以參考下
    2024-01-01

最新評(píng)論