Nginx-3:配置反向代理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx-3:配置反向代理相关的知识,希望对你有一定的参考价值。

1.90版本加入tcp的代理

在http标签中加入(weight权重)
upstream backend {
ip_hash; #默认轮训,但也可以加入会话保持ip_hash;
server 192.168.56.100:8080 weight=1 max_fails=3 fail_timeout=30s;
server 192.168.56.20:80 weight=1 max_fails=3 fail_timeout=30s;
}

在server标签中加入
location / {
proxy_pass http://backend;
}

测试配置文件
nginx -t

优雅重启
nginx -s reload

以上是关于Nginx-3:配置反向代理的主要内容,如果未能解决你的问题,请参考以下文章

linux-nginx-3(反向代理+负载均衡)

nginx反向代理配置不生效

Nginx反向代理常用配置

Nginx 如何设置反向代理

vue配置反向代理 devServer配置proxy

怎么配置反向代理 apache