我沏我的Mac上安装nginx的,但我不知道哪里是配置文件,我用“酿造安装nginx的--add模块= XXXX”添加模块不能正常工作......请帮助!
Answer 1:
nginx的全酿造配方有许多选项,使您能够安装第三方模块。
见输出brew info nginx-full
。
例如HttpHeadersMoreModule可以用命令进行安装
brew install nginx-full --with-headers-more-module
Answer 2:
在这个时候(2018年4月) nginx-full
默认情况下,不建议使用。 要安装第三方模块:
-
brew tap denji/nginx
-
brew install nginx-full --with-nchan-module
(或一些其它模块)
Answer 3:
现在,对于增加模块的电流的方法是通过URL来安装。
brew install https://raw.github.com/marcqualie/homebrew-nginx/master/nginx.rb
文章来源: I use homebrew to install nginx, and how to add 3rd modules?