IP2Location IP Geolocation Apache Module
This is an IP2Location IP Geolocation Apache Module that enables the user to identify the country, region, city, latitude, longitude, ZIP code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type by IP address. It contains a demo IP2Location IP-COUNTRY BIN database which consists of real data for IP address range 0.0.0.0 to 99.255.255.255.
This database contains IP address blocks as keys and countries as values. The paid version of IP2Location database covers all IP address ranges. In general, it is more complete, faster and more accurate than using reverse DNS lookups.
Developers can download sample databases to evaluate the Apache module's functionality.
Unix/Linux
- Create a new folder called ip2location.
- Download IP2Location C library from here into the ip2location folder.
- Decompress C library.
unzip master.zip
- Get into working directory.
cd IP2Location-C-Library-master
- Start compilation.
autoreconf -i -v --force ./configure make make install
- Download and decompress Apache module into the ip2location folder.
- Get into working directory.
cd ip2location-apache-master
- Start compilation.
apxs2 -i -a -L ../IP2Location-C-Library-master/libIP2Location/ -I ../IP2Location-C-Library-master/libIP2Location/ -l IP2Location -c mod_ip2location.c
-
Add following lines into /etc/apache2/apache2.conf
<IfModule mod_ip2location.c> IP2LocationEnable On IP2LocationDetectProxy <On|Off> IP2LocationSetmode <ALL> IP2LocationDBFile <ip2location_binary_db_file_with_fully_qualified_path> </IfModule>
Windows
- Create a new folder called ip2location.
- Download IP2Location C library from here into the ip2location folder.
- Decompress C library using 7-zip or other compression tools.
- Get into working directory.
cd IP2Location-C-Library-master
- Start compilation.
nmake /f Makefile.win
- Download and decompress Apache module into the ip2location folder.
- Navigate to ip2location-apache-master folder.
- Edit Makefile.win to change the path for C library.
IP2LOCATION_CSRC_PATH = C:/ip2location/IP2Location-C-Library-master/libIP2Location
IP2LOCATION_CLIB_PATH = C:/ip2location/IP2Location-C-Library-master/libIP2Location
APACHE_INSTALL_PATH = "C:/Program Files/Apache Software Foundation/Apachex.x" - Start compilation.
nmake /f Makefile.win
- Copy IP2Location_apache.dll generated to the Apache modules directory.
-
Add following lines into httpd.conf
<IfModule mod_ip2location.c> IP2LocationEnable <ON|OFF> IP2LocationDetectProxy <ON|OFF> IP2LocationSetmode <ALL> IP2LocationDBFile <ip2location_binary_db_file_with_fully_qualified_path> </IfModule>
Name | Description |
---|---|
IP2LocationEnable | ON | OFF. Enable or disable the IP2Location Apache Module. |
IP2LocationDetectProxy | ON | OFF. If enabled, the module will detect the proxy IP address from X-Forwarded-For server variable. If disabled, IP address is from the REMOTE_ADDR server variable. |
IP2LocationSetmode | ALL | ENV | NOTES. ENV will set the environment variables; NOTES will set the Apache NOTES variables; ALL will set both the ENV and NOTES variables. |
IP2LocationDBFile | Full qualified path to the IP2Location BIN database file. |
Apache .htaccess
RewriteEngine On
RewriteCond %{ENV:IP2LOCATION_COUNTRY_SHORT} ^GB$
RewriteRule ^(.*)$ http://www.google.co.uk [L]
Apache Mod Security
SecRule ENV:IP2LOCATION_COUNTRY_SHORT "NG|VN" "deny,status:500,id:5000888,msg:'Block visitor from Nigeria and Vietnam'"
Discover Your User Locations
Retrieve geolocation data for FREE now!