GeoIP 配置到 nginx

GeoIP 配置到 nginx

我正在尝试将 geoip 编译到 nginx 中。执行此操作时./configure --with-http_geoip_module出现以下错误。

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

我尝试了各种组合,试图用 apt-get 找到 nginx 的 geoip 模块,但都没有成功。如果有人能给我指出正确的方向就好了。

答案1

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

答案2

对于 Centos/RedHat 和其他基于 yum 的版本:

yum provides geoip-devel

就我而言,它在epelrepo 中。

相关内容