在 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