Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 700 Bytes

nginx_learn.md

File metadata and controls

16 lines (12 loc) · 700 Bytes

nginx

Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。
百度百科-Nginx
nginx-tutorial

安装nginx

1、xcode-select --install
2、ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
3、brew install nginx
4、sudo nginx
OK,nginx安装好了,浏览器 http://localhost:8080/ 看到 "Welcome to nginx!...."那就说明安装好了。
nginx -v 可以看到安装的版本

。。。。。。