动态编译好第三方模块:ngx_http_ts_module.so 检测nignx配置,异常
sudo /usr/local/openresty/nginx/sbin/nginx -t nginx: [emerg] module "/usr/local/openresty/nginx/modules/ngx_http_ts_module.so" is not binary compatible in /usr/local/openresty/nginx/conf/nginx.conf:7 nginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test failed
原因
第三方模块的编译中包含的签名和使用的nignx不一致
解决方案
先通过 nginx -V 命令得到当前配置的configure配置,在复制所有的配置命令。添加到:
./configure [“你的nignx -V 得到的配置参数”] --add-dynamic-module=/etc/pan1/fastdfs-nginx-mo
重新生成第三方模块。接下来该怎么配置就怎么配置。问题解决!
标签:binary,openresty,Nginx,module,compatible,nginx,usr,conf,local From: https://www.cnblogs.com/tinywan/p/18038318