标签 反向代理 下的文章

Nginx负载均衡实战

前面介绍了Nginx搭建flv、mp4流媒体服务器,随着流量的上升,单台服务器已经无法支撑,所以就用到了负载均衡。

系统环境:
Centos 6.5 x86_64
Nginx 1.7.7

均衡负载服务器: 209.141.54.64:80
Web1: 209.141.54.65:80
Web2: 209.141.54.66:80
Web3: 209.141.54.64:8080

Web1 Web2 和 Web3 都是已经搭建好的流媒体服务器,Web3同时做为负载均衡和Web服务器使用,负载均衡使用的端口是80,Web服务使用的是8080端口。

- 阅读剩余部分 -

配置Nginx反向代理

一、最简单的反向代理脚本

server
       {
       listen          80;
       server_name     t.2dan.cc;

       location / {
       proxy_pass              http://twitter.com/;
       proxy_redirect          off;
       proxy_set_header        X-Real-IP       $remote_addr;
       proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                     }
       }

添加好后,先执行:

/usr/local/nginx/sbin/nginx -t

- 阅读剩余部分 -