是這樣的 我已經架設好nginx 並添加geoip2 module 以及設定好mmdb
測試連到nginx已經會取得我要的header
這是部分config
location /info {
add_header X-Real-IP $remote_addr;
add_header X-GeoIP-Country-Code $geoip2_country_code;
add_header X-GeoIP-Country-Name $geoip2_data_country_name;
add_header X-GeoIP-Data-Country-Code $geoip2_data_country_code;
add_header X-GeoIP-Data-City-Name $geoip2_data_city_name;
add_header X-GeoIP-Continent-Code $geoip2_continent_code;
add_header X-GeoIP-Data-Province-Name $geoip2_data_province_name;
add_header X-GeoIP-Data-Province-Isocode $geoip2_data_province_isocode;
}
想請問如果我proxy pass到後端(這邊拿另一台nginx 192.168.1.2來模擬當後端)
location /info {
proxy_pass http://192.168.1.2
並且想在後端的access.log上可以看到這些header
該怎麼做呢