博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mac环境下配置nginx
阅读量:5982 次
发布时间:2019-06-20

本文共 462 字,大约阅读时间需要 1 分钟。

  1.建议使用homebrew安装(ruby安装 brew install ruby

  ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.安装nginx brew install nginx 3.启动nginx brew services start nginx 4.卸载nginx
brew uninstall nginx 以上安装需提前安装好ruby

 nginx 常用命令

 nginx #启动
 nginx nginx -s quit#快速停止
   nginx nginx -V #查看版本,以及配置文件地址
   nginx -v #查看版本
   nginx -s reload|reopen|stop|quit #重新加载配置|重启|快速停止|安全关闭
   nginx nginx -h #帮助

转载于:https://www.cnblogs.com/fancyLee/p/8708977.html

你可能感兴趣的文章
Linux中grep命令的12个实践例子
查看>>
使用Docker Compose部署基于Sentinel的高可用Redis集群
查看>>
Mybatis 3学习笔记(一)
查看>>
Guice系列之用户指南(十)
查看>>
树与森林的存储、遍历和树与森林的转换
查看>>
Android自定义属性
查看>>
Visual C#之核心语言
查看>>
代码重构(五):继承关系重构规则
查看>>
Windows App开发之集合控件与数据绑定
查看>>
中大型网站技术架构演变过程
查看>>
ARTS训练第三周
查看>>
vue中v-for循环如何将变量带入class的属性名中
查看>>
ceph学习笔记之七 数据平衡
查看>>
windows下的php的memcache扩展的安装及memcache最新下载地址
查看>>
YOLOv3: 训练自己的数据(绝对经典版本1)
查看>>
POJ 1150 The Last Non-zero Digit 《挑战程序设计竞赛》
查看>>
Could not find artifact com.sun:tools:jar:1.5.0 解决办法
查看>>
phpstorm xdebug remote配置
查看>>
引用与指针的区别
查看>>
pygtk笔记--2.1:布局容器,VBox、Hbox、Alignment
查看>>