GeoIP para configuração no nginx

7

Estou tentando compilar o geoip no nginx. Ao fazer ./configure --with-http_geoip_module , recebo o seguinte erro.

./configure: error: the GeoIP module requires the GeoIP library.
You can either do not enable the module or install the library.

Eu tentei qualquer combinação para tentar encontrar o módulo geoip para o nginx com o apt-get e não estou tendo sorte. Se alguém puder me apontar na direção correta.

    
por Mark Tomlin 30.04.2013 / 17:05

2 respostas

11
root@ip-10-112-39-42:~# apt-cache search geoip
....
libgeoip-dev - Development files for the GeoIP library
....
root@ip-10-112-39-42:~# apt-get install libgeoip-dev
    
por 30.04.2013 / 17:08
3

Para Centos / RedHat e outros baseados em yum:

yum provides geoip-devel

No meu caso, está em epel repo.

    
por 23.08.2016 / 15:00