美文网首页
Nginx环境配置(Mac版)

Nginx环境配置(Mac版)

作者: 馒头Show | 来源:发表于2017-07-31 12:03 被阅读0次

在Mac系统下配置Nginx服务器

  • 搜索
brew search nginx
  • 安装
brew install nginx
image.png

安装成功

  • 启动nginx服务器
sudo nginx

常用命令

  • 查看版本,以及配置文件地址
nginx -V  
  • 查看版本
nginx -v
  • 指定配置文件
nginx -c filename
  • 帮助
nginx -h
  • 重新加载配置|重启|停止|退出 nginx
nginx -s reload|reopen|stop|quit

-打开 nginx

sudo nginx
  • 测试配置是否有语法错误
nginx -t

文件说明

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

/usr/local/var/www (服务器默认路径)

/usr/local/Cellar/nginx/1.8.0 (安装路径

修改nginx默认端口号

cd /usr/local/etc/nginx/nginx.conf
image.png
image.png

修改以上两处

相关文章

网友评论

      本文标题:Nginx环境配置(Mac版)

      本文链接:https://www.haomeiwen.com/subject/ozgllxtx.html