nginx 配置做反向代理不成功

【字号: 日期:2022-07-24浏览:19作者:雯心

问题描述

在 nginx.conf 加入如下代码:

# node testserver { listen 80; server_name www.baidu.com; location /{proxy_pass http://127.0.0.1:8000;proxy_set_header Host $host; }}

在 http{} 中,位置应该没问题,localhost:8000 能够启动,然后 start nginx,打开 www.baidu.com 还是百度的页面,求指导

问题解答

回答1:

猜测是host里面没添加对应的绑定

回答2:

反向代理,是在服务端设置的代理。你访问百度,当然还是百度的页面。

回答3:

绑定hosts ,/etc/hosts

相关文章: