热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Windows系统中配置Nginx服务器做反向代理

一、下载在http://nginx.org/上下载(zip包)并解压。二、配置conf/nginx.conf文件1.在conf目录下新建一个vhosts.conf文本文件2.将conf/nginx.con文件中server部分复制到vhosts.conf文件中,用includevhosts.conf;来取代原先serv
一、下载
http://nginx.org/上下载(zip包)并解压。

二、配置conf/nginx.conf文件
1.在conf目录下新建一个"vhosts.conf"文本文件
2.将conf/nginx.con文件中server部分复制到vhosts.conf文件中,用"include vhosts.conf;"来取代原先server部分
3.在vhosts.conf中增加反向代理配置,如下:
server {
        listen       80;
        server_name  localhost;
        location / {
            root   html;
            index  index.html index.htm;
        }
        location /google {
            proxy_pass http://www.google.com;
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
}
上面location /google部分是将/google 映射到http://www.google.com

三、启动与关闭
用命令行进入nginx解压位置,以下操作均为命令行操作。
1.启动:nginx
2.关闭:nginx -s stop
如果关闭不掉,则直接在进程管理器中结束所有nginx.exe进程

推荐阅读
author-avatar
廖赞胜
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有