我需要在我的 Homestead 上安装https://github.com/leev/ngx_http_geoip2_module 。当我首先在 after.sh 中重新编译 nginx 时,我收到一个模块不兼容二进制的错误,我读到我必须使用编译 Nginx 的所有原始标志执行 ./configure。
因此,我使用 nginx -V 获取所有标志,将它们复制并粘贴到我的 after.sh 中,但现在我收到有关某些模块中缺少 /config 文件的错误,而其他模块需要库,例如:
==> homestead-7: ./configure: error: the HTTP image filter module requires the GD library.
==> homestead-7: You can either do not enable the module or install the libraries.
这些这里给了我有关丢失文件的错误(可能是因为 /debian/ 目录甚至不存在于 /nginx-1.11.5/ 目录中,我从 nginx 下载。
--add-dynamic-module=/build/nginx-Rrk92d/nginx-1.11.5/debian/modules/nginx-auth-pam --add-dynamic-module=/build/nginx-Rrk92d/nginx-1.11.5/debian/modules/nginx-echo --add-dynamic-module=/build/nginx-Rrk92d/nginx-1.11.5/debian/modules/nginx-upstream-fair --add-dynamic-module=/build/nginx-Rrk92d/nginx-1.11.5/debian/modules/ngx_http_substitutions_filter_module
任何人都有这种事情的经验,可以给我指点如何以正确的方式做到这一点?