Nginx-Mac

  1. 配置文件路径
    /usr/local/etc/nginx/nginx.conf

  2. 安装路径
    /usr/local/Cellar/nginx/1.15.9/bin
    //(1.15.9)是自己安装的版本号

  3. 查看配置文件是否有问题
    nginx -t

  4. 查看进程
    ps -ef|grep nginx

  5. 启动
    nginx

  6. 重启
    nginx -s reload

  7. 关闭
    nginx -s quit

你可能感兴趣的:(Nginx-Mac)