- 安装:
brew install nginx
- 启动:
nginx
(默认端口 8080,启动后查看 http://localhost:8080/)(所以启动了 nginx,8080 的端口就被占用了) - 停止:
nginx -s stop
- 重启:
nginx -s reload
- 查看配置是否正确:
nginx -t
如果用 brew 下载的 nginx,brew 也提供了一套类似的命令,比如 brew services restart nginx
配置文件:
- 配置入口文件:
/usr/local/etc/nginx/nginx.conf
- 我的配置:
/usr/local/etc/nginx/severs/
(会在入口文件中引入)