nginx转发配置
Posted Lee_Sung
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx转发配置相关的知识,希望对你有一定的参考价值。
转发
在最新版本的nginx中,动态配置文件位置在/etc/nginx/conf.d/default.conf(CentOS 7)。
1、Nginx在ip为xxx.xxx.xxx.200的服务器上
2、某个web服务在xxx.xxx.xxx.201:7180的服务器上
要实现nginx来转发该web服务。
在Nginx的服务器上对/etc/nginx/conf.d/default.conf进行配置,如下:
server
listen 82; #Nginx监听82端口
server_name localhost; #代理服务器的地址,Nginx监听本机IP(即Nginx所在服务器的IP,客户端访问Nginx服务器IP:82即可访问到被转发的服务。)
allow all;
location /
#proxy_read_timeout 1800;
#proxy_next_upstream http_502 http_504 error timeout invalid_header;
#proxy_set_header Host $host;
#proxy_set_header X-Forwarded-For $remote_addr; #返回真实IP
proxy_pass http://xxx.xxx.xxx.201:7180/; #被代理服务的地址,即web服务所在服务器的IP和端口号
error_page 500 502 503 504 /50x.html;
location = /50x.html
root /usr/share/nginx/html; #服务器出错页面的配置
配置完成后,如下命令重启nginx服务:
service nginx restart
客户端访问xxx.xxx.xxx.200:82 即可访问到被代理的web服务(xxx.xxx.xxx.201:7180)。
以上是关于nginx转发配置的主要内容,如果未能解决你的问题,请参考以下文章