地址:https://brew.sh/index_zh-cn.html。

打开终端 更新

brew update

mac安装nginxphpmysqlmac下nginx的安装 CSS

查询要安装的软件是否存在

brew search nginx

安装nginx

brew install nginx

查看nginx的安装信息

brew info nginx

查看nginx安装目录

open /usr/local/etc/nginx/

nginx 真实被安装的目录

open /usr/local/Cellar/nginx

启动nginx 打开localhost:8080 查看

nginx

查看nginx 配置文件代码

cat /usr/local/etc/nginx/nginx.conf

配置文件里网站的根目录

cd /usr/local/var/www/ //进入到www目录

touch index.html //创建一个html文件

vim index.html //编辑该文件