MacOS 安装 nginx

brew install nginx 

 开机启动

$ sudo cp `brew --prefix nginx`/homebrew.mxcl.nginx.plist /Library/LaunchDaemons/
$ sudo sed -i -e 's/`whoami`/root/g' `brew --prefix nginx`/homebrew.mxcl.nginx.plist

 error log

sudo mkdir /var/log/nginx/
nginx.conf: error_log  /var/log/nginx/error.log;)

Config file directory:

/usr/local/etc/nginx/nginx.conf
/usr/local/etc/php/5.4/php.ini
/usr/local/etc/nginx/fastcgi_params

 common commands

nginx -s stop ;stop
nginx ;start
ngin -s reload ;reload conf file

参考 

原文地址:https://www.cnblogs.com/iosdev/p/3345390.html