nginx反向代理
程序员文章站
2022-05-26 23:50:03
...
反向代理解释: a 服务器ip地址也能访问其他服务器上的指定网站
操作:
1.打开nginx.conf,最好先备份一个
2. 添加下图代码:(注意添加在server中的最下面,然后重启nginx)
location / {
proxy_pass https://www.baidu.com;
#index index.html index.htm;
}
#在nginx.conf的server中添加
location / {
proxy_pass https://www.baidu.com;
#index index.html index.htm;
}
#如下图所示
然后重启nginx: service nginx restart
这时在浏览器输入你的ip地址就能访问baidu了