Nginx反向代理轉發Host設置

    默認狀況下反向代理是不會轉發請求中的Host頭部,若是須要轉發,則須要配置紅色字體表示的選項參數。字體

location /t02 {
 proxy_set_header Host $host; proxy_set_header X-real-ip $remote_addr;
            proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;

            proxy_pass http://192.168.3.15:9401/t02;
}
相關文章
相關標籤/搜索