美文网首页
Mac安装Nginx服务器

Mac安装Nginx服务器

作者: Mr__Professor | 来源:发表于2016-08-04 17:49 被阅读259次

    1、Mac系统中会使用homebrew来代替yum,所以先需要安装brew

    安装命令如下:

    curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip 1

    安装完毕之后直接使用brew有可能会提示需要更新,直接进行更新brew即可

    sudo brew update

    2、下载Nginx服务器

    sudo brew install nginx

    3、Nginx配置文件位置

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

    4、测试服务器是否能跑通

    sudo nginx启动服务(默认8080端口)

    然后在浏览器输入localhost:8080,结果如下

    5、常用指令如下:

    nginx -V 查看版本,以及配置文件地址

    nginx -v 查看版本

    nginx -c filename 指定配置文件

    nginx -h 帮助

    nginx -t 查看配置文件是否正确

    #重新加载配置|重启|停止|退出

    nginx -s reload|reopen|stop|quit

    相关文章

      网友评论

          本文标题:Mac安装Nginx服务器

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