nginx反向代理配置

nginx反向代理配置
2013年5月2日mood发表评论阅读评论

赞助本站主机 网速测试 最新美元人民币汇率
nginx作为web服务器一个重要的功能就是反向代理。

当然你也可以使用nginx配置正向代理,本是介绍如何配置nginx的反向代理。

nginx反向代理的指令不需要新增额外的模块,默认自带proxy_pass指令,只需要修改配置文件就可以实现反向代理。

配置前的准备工作,后端跑apache服务的ip和端口,也就是说可以通过http://ip:port能访问到你的网站。

然后就可以新建一个vhost.conf,加入如下内容,记得修改ip和域名为你的ip和域名。

修改nginx.conf,添加 include quancha.conf 到http{}段, reload nginx就可以了。

quancha.conf文件如下:

Basic reverse proxy server

Apache backend for www.quancha.cn

upstream apachephp {
server ip:8080; #Apache
}

Start www.quancha.cn

server {
listen 80;
server_name www.quancha.cn;

access_log  logs/quancha.access.log  main;
error_log  logs/quancha.error.log;
root   html;
index  index.html index.htm index.php;

## send request back to apache ##
location / {
    proxy_pass  http://apachephp;

    #Proxy Settings
    proxy_redirect     off;
    proxy_set_header   Host             $host;
    proxy_set_header   X-Real-IP        $remote_addr;
    proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
    proxy_max_temp_file_size 0;
    proxy_connect_timeout      90;
    proxy_send_timeout         90;
    proxy_read_timeout         90;
    proxy_buffer_size          4k;
    proxy_buffers              4 32k;
    proxy_busy_buffers_size    64k;
    proxy_temp_file_write_size 64k;

}
}

End www.quancha.cn

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

Basic reverse proxy server

Apache backend for www.quancha.cn

upstream apachephp {
server ip:8080; #Apache
}

Start www.quancha.cn

server {
listen 80;
server_name www.quancha.cn;

access_log  logs/quancha.access.log  main;
error_log  logs/quancha.error.log;
root   html;
index  index.html index.htm index.php;

## send request back to apache ##
location / {
    proxy_pass  http://apachephp;

    #Proxy Settings
    proxy_redirect     off;
    proxy_set_header   Host             $host;
    proxy_set_header   X-Real-IP        $remote_addr;
    proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
    proxy_max_temp_file_size 0;
    proxy_connect_timeout      90;
    proxy_send_timeout         90;
    proxy_read_timeout         90;
    proxy_buffer_size          4k;
    proxy_buffers              4 32k;
    proxy_busy_buffers_size    64k;
    proxy_temp_file_write_size 64k;

}
}

End www.quancha.cn

除非注明,本站文章均为: nginx.cn原创,转载请注明本文地址: http://www.nginx.cn/927.html
–完–

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值