在 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 还是百度的页面,求指导