在 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 還是百度的頁面,求指導