新版的 Mac OS 內置了Apache 和 PHP,可以通過以下命令查看Apache和PHP的版本號:
# httpd -v # php -v
Mac下的Homebrew相當於Linux下的apt-get、yum,可以獲得最新版的各種安裝包。
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安裝完成後,運行以下命令檢查是否安裝成功
brew doctor
更新、升級下brew源
brew update && brew upgrade
brew install nginx
修改配置文件
sudo vim /usr/local/etc/nginx/nginx.conf #修改默認的8080端口為80
設置自啟
sudo cp -v /usr/local/opt/nginx/homebrew.mxcl.nginx.plist /Library/LaunchDaemons/ sudo chown root:wheel /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
啟動nginx服務
sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
現在默認監聽80端口,運行以下命令測試
curl -IL http://127.0.0.1:80
查看nginx幫助
nginx -h
停止Nginx服務
sudo launchctl unload /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
因為brew默認不包含php-fpm,所以要先添加一個