【Nginx】mac下安装配置nginx

安装brew

官方安装速度太慢,使用第三方镜像安装

"$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

安装nginx

brew install nginx

查找配置文件nginx.conf

open /usr/local/Cellar/nginx

查找项目根目录

open /usr/local/Cellar/nginx

打开后有个版本号的目录,这个目录内有名为html的文件夹快捷方式,就是项目根目录

启动nginx

nginx

修改配置文件后,重新加载

nginx -s reload

你可能感兴趣的:(【Nginx】mac下安装配置nginx)