我用自制安装nginx的,以及如何添加第三个模块?(I use homebrew to instal

2019-09-01 16:57发布

我沏我的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默认情况下,不建议使用。 要安装第三方模块:

  1. brew tap denji/nginx
  2. 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?