1. 程式人生 > >Nginx反向代理轉發Host設置

Nginx反向代理轉發Host設置

logs real gin host cat 請求 nginx反向代理 war http

默認情況下反向代理是不會轉發請求中的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;
}

Nginx反向代理轉發Host設置