Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> nginx配置反向代理

nginx配置反向代理

日期:2017/2/7 14:41:37      編輯:Linux教程
 
server {
        listen       80;
        server_name  www.baidu.com;
         
location / {
                proxy_pass              http://1.2.3.4; //後端ip地址
                proxy_redirect          off;  //關閉後端返回的header修改
                 proxy_set_header       Host            $host;  //修改發送到後端的header的host
                proxy_set_header        X-Real-IP       $remote_addr; //設置真實ip
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                }
        }

nginx配置反向代理很簡單,只需要在nginx.conf配置文件加入server區塊。

Copyright © Windows教程網 All Rights Reserved