【发布时间】:2017-01-19 10:51:46
【问题描述】:
我正在使用 Mac 操作系统。 用 brew 安装 nginx:
brew install nginx
但是这个 nginx 不支持 webdav。
nginx: [emerg] unknown directive "dav_methods"
于是我发现有nginx/full
用--with-upload-module安装它
brew install homebrew/nginx/nginx-full --with-upload-module
它说,我没有 OpenSSL:
checking for OpenSSL library ... not found
checking for OpenSSL library in /usr/local/ ... not found
checking for OpenSSL library in /usr/pkg/ ... not found
checking for OpenSSL library in /opt/local/ ... not found
所以我也尝试安装它:
brew install --force openssl
得到:Warning: openssl-1.0.2j already installed, it's just not linked.
我该如何解决这个问题?
【问题讨论】:
-
nginx-full已从主自制程序中删除,目前是社区支持的点击denji/nginxgithub.com/denji/homebrew-nginx。