如何在mac系统上设置NGINX Web服务器及其RTMP模块?
我尝试使用以下链接设置服务器
https://github.com/arut/nginx-rtmp-module/wiki/Getting-started-with-nginx-rtmp
https://github.com/arut/nginx-rtmp-module/wiki/Installing-via-Build
但无法运行它,因为它给出了如下错误: -
nginx-rtmp-module-master XXXXX$ ./configure --add-module=/path/to/nginx-rtmp-module --with-debug ...
-bash: ./configure: No such file or directory
答案 0 :(得分:12)
我遇到了同样的问题,但是brew tap homebrew/nginx
会返回错误
错误:不推荐使用homebrew / nginx。这个水龙头现在都是空的 公式被迁移。
我用
解决了这个问题 brew tap denji/homebrew-nginx
而不是
brew tap homebrew/homebrew-nginx
答案 1 :(得分:6)
您可以试试这些,我使用相同的方法在我的Mac上安装auth_module
。
brew tap homebrew/nginx
brew install nginx-full --with-rtmp-module --with-debug
答案 2 :(得分:0)
重新安装
brew remove nginx
brew install nginx-full --with-rtmp-module --with-debug