0、nginx学习笔记
https://github.com/qq20004604/nginx-demo
1、安装
【1】ububtu平台、centos平台,参考:
https://wizardforcel.gitbooks.io/nginx-doc/content/Text/1.3_install.html
【2】mac平台:
参考:https://www.jianshu.com/p/026d67cc6cb1
1、先执行,安装homebrew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
说明:
- 第一行命令执行完,需要按一次 return(回车键),和输一次密码;
- 过程比较久,因为需要下载一些东西;
2、再执行安装nginx:
brew install nginx
3、执行:
sudo xcode-select --install
不过他可能会提示:xcode-select: error: command line tools are already installed, use “Software Update” to install updates
那么就不管了吧
4、启动nginx服务
brew services start nginx
等可以继续输入命令的时候,打开:http://localhost:8080/ 有正常显示,说明就ok了。
【3】其他平台: