Mac

[Mac] 10 Mac 安装配置 Nginx

Mac 安装配置 Nginx

Posted by Mr.Vincent on 2020-03-23
Estimated Reading Time 1 Minutes
Words 275 In Total
Viewed Times

用 Homebrew 来安装 Nginx

安装

1
brew install nginx

查看 nginx 版本

1
nginx -v

启动 nginx

1
nginx

也可以使用下面的命令启动,但是配置文件 nginx.conf 修改后用这个命令执行不生效,故不建议使用:

1
brew services start nginx

1

查看 nginx 是否启动成功

在浏览器中访问:在浏览器中访问:http://localhost:18080,如果出现如下界面,则说明启动成功。,如果出现如下界面,则说明启动成功。

2

:端口号是在配置文件 nginx.conf 里面配置的,默认端口是 8080 ,配置文件的位置 /usr/local/etc/nginx

关闭 nginx

1
nginx -s stop

也可以使用下面的命令启动,但是配置文件 nginx.conf 修改后用这个命令执行不生效,故不建议使用:

1
brew services stop nginx

重新加载 nginx

1
nginx -s reload

常用的指令有

1
2
3
4
5
6
7
8
nginx -s reload 重新加载配置
nginx -s reopen 重启
nginx -s stop 停止
nginx -s quit 退出
nginx -V 查看版本,以及配置文件地址
nginx -v 查看版本
nginx -c filename 指定配置文件
nginx -h 帮助

If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !