Nginx反向代理及跨域解决方案(windows版本)
2021-01-17 18:14
标签:mil mamicode 第一个 file 回车 正则 star 先来 new 你懂的,如果关闭Nginx 不使用它的话,可能真的就挂了。 Nginx反向代理及跨域解决方案(windows版本) 标签:mil mamicode 第一个 file 回车 正则 star 先来 new 原文地址:https://www.cnblogs.com/LiuBaoy/p/12195738.html
第一个当然是注释了 , 在conf 文件中以 # 为注释条件,和php是一样的。但是他不支持我们常用的 // 来进行注释,这个让我们稍微有点小尴尬。
1.http 这就不用说了,这是服务器的祖宗,一个服务器要是不提供http功能的话就不用叫做服务器了。
2.在http之中我们会配置各种各样的功能,两个功能是我们关注的重点。
server { 我们会在server中配置端口号,配置服务名称等等一些列的配置;
location 正则{ 表示访问路径;
root html 表示根目录;
index index.html index.htm 首页索引
proxy_name : 代理这个是关键;
}
}
解压到当前文件夹
1. 盘符: 回车 => 表示进入对应的盘符;
2. cd 文件夹名称 => 表示进入对应的文件夹;
好了,说下这四个个指令;
nginx -s stop => 表示停止 nginx;
nginx -s relod => 表示重启 nginx;
nginx -s quit =>表示推出nginx (并没有什么卵用);
start nginx => 表示启动服务器;
location / {
root html;
index index.html index.htm;
}
location = /baidu {
proxy_pass https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=nihao;
}
location = /zcool{
proxy_pass http://www.zcool.com.cn/recommend/contentRecommend;
}
好了这就代理完了
文章标题:Nginx反向代理及跨域解决方案(windows版本)
文章链接:http://soscw.com/index.php/essay/43308.html