mac install nginx
在mac中安装nginx
-
安装nginx
brew install nginx
-
启动nginx
- 方法一
sudo nginx nginx -v nginx -s stop
- 方法二
sudo brew services start nginx // 启动nginx sudo brew services stop nginx // 结束nginx sudo brew services restart nginx // 重启nginx
-
nginx 配置文件路径
/usr/local/etc/nginx/nginx.conf (配置文件路径) /usr/local/var/www (服务器默认路径) /usr/local/Cellar/nginx/1.8.0 (安装路径)