在 nginx.conf 加入如下代码:
# node test
server {
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 还是百度的页面,求指导
猜测是
host
里面没添加对应的绑定反向代理,是在服务端设置的代理。你访问百度,当然还是百度的页面。
绑定hosts ,/etc/hosts