简单nginx配置反向代理nginx转发请求到多台服务器

19次阅读

共计 415 个字符,预计需要花费 2 分钟才能阅读完成。

反向代理:reverse proxy,是指用代理服务器来接受客户端发来的请求,然后将请求转发给内网中的上游服务器,上游服务器处理完之后,把结果通过 nginx 返回给客户端。

假如需要根据 url 或 ip 得不同,把请求代理到不同得服务器 就可以这样配置 nginx.conf。


events {worker_connections  1024;}


http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;

    keepalive_timeout  65;

    server {
        listen       80;
        server_name  127.0.0.6;
 
        location / {proxy_pass http://localhost:7001;}
       
    }
 
    server {
        listen       80;
        server_name  127.0.0.7;
 
        location / {proxy_pass http://localhost:7002;}
       
    }


}

正文完
 0