使用HomeBrew安装
brew search nginx
brew install nginx
安装完以后,可以在终端输出的信息里看到一些配置路径
文件目录
/usr/local/etc/nginx/nginx.conf (配置文件路径)
/usr/local/var/www (服务器默认路径)
/usr/local/Cellar/nginx/1.13.12 (安装路径)
启动nginx
sudo nginx
访问nginx
如果没有修改nginx.conf,则默认访问localhost:8080
nginx服务如果启动成功 则浏览器显示如下界面:
常用命令
nginx 启动nginx服务
nginx -v 查看版本号
nginx -s quit 退出nginx
nginx -s reload 重新加载nginx
nginx -t 测试nginx.conf配置
没有权限 则需要在命令前加上sudo,进行授权
nginx: [alert] could not open error log file: open() "/usr/local/var/log/nginx/error.log" failed (13: Permission denied)