mac下安装 nginx

1. 下载资源  http://nginx.org/en/download.html   下载你要的版本注意不要下win版的

2. 进入终端~解压资源  tar -xf nginx-1.2.0.tar (也可以双击解压)

3. 进入解压目录 执行命令(授权)  chmod a+rwx *

4. 执行命令  sudo  ./configure --without-http_rewrite_module   (注意要sudo ,输入你的管理员密码)

5.  sudo make 

6.  sudo make install

6. 启动  sudo /usr/local/nginx/sbin/nginx   (如果你80端口占用请自行修改配置)

7. 在浏览器里面输入 http://localhost   



你可能感兴趣的:(开发环境)