在mac os x 10.9.2上安装nginx

概述

以下是在mac os x 10.9.2 安装nginx步骤

安装PCRE

1、Download latest  PCRE
2、安装
$ cd ~/Downloads
$ tar xvzf pcre-8.5
$ cd pcre-8.5
$ sudo ./configure --prefix=/usr/local
$ sudo make
$ sudo make install 

安装Nginx

1、Download latest  nginx  from  Nginx.org
2、安装
$ cd ~/Downloads
$ tar xvzf nginx-1.6.0.tar.gz
$ cd nginx-1.6.0
$ sudo ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-cc-opt="-Wno-deprecated-declarations"
$ sudo make
$ sudo make install

开启Nginx

1、将/usr/local/nginx/sbin加入到环境变量里
2、运行
$ sudo nginx 
3、打开浏览器 http://localhost,如果看到如下界面表明nginx启动正常了
在mac os x 10.9.2上安装nginx_第1张图片
4、停止
$ sudo nginx -s stop

你可能感兴趣的:(nginx)