Nginx高端成长之路Nginx

nginx反向代理

2017-07-17  本文已影响91人  ifcoder

什么是反向代理?

通常的代理服务器,只用于代理内部网络对Internet的连接请求,客户机必须指定 代理服务器,并将本来要直接发送到Web服务器上的http请求发送到代理服务器中 由代理服务器向Internet上的web服务器发起请求,最终达到客户机上网的目的。

而反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器

一个server{}就是一个虚拟主机
反向代理 :proxy_pass

反向代理配置nginx.conf:

upstream 名字 {
 server IP:PORT;
 server IP:PORT;
}
server{
    location / {
        proxy_pass http://名字;
    }
}

tengine新增健康检查模块

配置一个status的location

location /status {
    check_status;
}

在upstream中配置如下:

check interval=3000 rise=2 fall=5 timeout=1000 type=http;
check_http_send "HEAD / HTTP/1.0\r\n\r\n";
check_http_expect_alive http_2xx http_3xx;

Syntax: check interval=milliseconds [fall=count] [rise=count] [timeout=milliseconds] [default_down=true|false] [type=tcp|http|ssl_hello|mysql|ajp] [port=check_port]

Default: 如果没有配置参数,默认值是:interval=30000 fall=5 rise=2 timeout=1000 default_down=true type=tcp
Context: upstream

Tips

上一篇下一篇

猜你喜欢

热点阅读