教你如何在Mac上搭建自己的服务器——Nginx

1. 安装Homebrew

2. 安装Nginx

3. 启动Nginx

1. 安装Homebrew

打开终端,输入:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

跟着步骤走。终端都有提示。

2. 依赖Homebrew安装Nginx

依旧在终端中 

brew install nginx

这个等待时间会比较长。如果你仔细看了终端的进程。你会发现你用homebrew安装是多么聪明了。其实在安装nginx之前还要帮你安装很多别的,如果你独立安装,是很费劲的。。。

3. 启动Nginx

依旧在终端里,输入 

nginx

回车就行了。别惊讶,就这么简单。 

怎样验证Nginx能用了呢。你在浏览器里输入localhost:8080,回车,出现以下画面,说明成功。

Mac 系统 开启启动 nginx

通过brew 安装install 后

sudo cp /usr/local/opt/nginx/*.plist  /Library/LaunchDaemons  
sudo launchctl load -w /Library/LaunchDaemons/homebrew.mxcl.nginx.plist

相关推荐