欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在mac os x 10.9.2上安装nginx

程序员文章站 2022-04-22 14:57:38
...

概述

以下是在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
4、停止
$ sudo nginx -s stop

转载于:https://my.oschina.net/mayude/blog/680460