1. 安装homebrew
打开终端
xcode -select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)
2. 安装nginx
brew install nginx
3. 启动nginx
sudo nginx
或者
brew services start nginx
可以通过访问localhost:8080端口
Question :
1.当出现文件无权限怎么做?
答:使用 sudo chmod -x 777 [无权限路径] 赋予权限
2.安装路径在哪里?
答:/usr/local/Cellar 目录下
配置Nginx服务器
编辑nginx.conf 来配置
vim /usr/local/etc/nginx/nginx.conf
自定义端口,和配置本地网站TanWeb, 注意设置访问权限( user root owner; ),不然等会访问网站会出现403错误
修改前image.png
修改后image.png
重启nginx
sudo nginx -s relaod
Tips
VIM编辑器
:::wq使用"i"进入编辑模式 ,
ESC退出编辑模式,
":wq"报错退出,
":q"不保存退出
参考:安装NGINX
网友评论