I'm on a projet where I have to implement GeoIP on a Redhat Apache instance. For now, i'm only testing the configuration in local. Here it is :
<IfModule mod_geoip.c>
GeoIPEnable On
GeoIPDBFile PATH_TO_LIB\GeoIP.dat
GeoIPEnableUTF8 On
GeoIPOutput All
</IfModule>
Idea/Hypothesis : I want to test the outputs of the librairy and change it to link localhost to different country. In Other words :
193 => France
Will temporarly become in the library
127 => France
for testing purposes.
Question : How can I know that the library GeoIP.dat is called ? Has anyone tested it this way before ?
Thanks,