nginx 配置找不到上传模块的配置,但它肯定存在?

nginx 配置找不到上传模块的配置,但它肯定存在?

我正在尝试从源代码安装 nginx,其中包含 nginx 上传模块。但是我遇到了这个奇怪的错误:

./configure --with-http_ssl_module --with-http_flv_module --with-http_gzip_static_module --with-mail --with-mail_ssl_module --with-poll_module --with-http_stub_status_module  --with-http_perl_module --add-module=/root/dls/nginx_upload_module_2.2.0
...
**adding module in /root/dls/nginx_upload_module_2.2.0
./configure: error: no /root/dls/nginx_upload_module_2.2.0/config was found**

虽然配置肯定存在:

root@xxxxx:~/dls/nginx-1.1.14# l -alh /root/dls/nginx_upload_module-2.2.0/config 
-rw-r--r-- 1 1000 1000 188 2010-09-27 14:54 /root/dls/nginx_upload_module-2.2.0/config

我该如何修复此问题以安装 nginx?

答案1

从提供的信息来看,configure 命令中指定的路径似乎有一个下划线 (nginx_upload_module_2.2.0),而配置的实际路径有一个破折号 (nginx_upload_module-2.2.0)。由于它们不匹配,configure 命令无法找到该配置。

相关内容