在mac os x 10.9.2上安装nginx
程序员文章站
2022-04-22 14:57:38
...
2、安装
$ cd ~/Downloads
$ tar xvzf pcre-8.5
$ cd pcre-8.5
$ sudo ./configure --prefix=/usr/local
$ sudo make
$ sudo make install
安装Nginx
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启动正常了
4、停止
$ sudo nginx -s stop
转载于:https://my.oschina.net/mayude/blog/680460
下一篇: PHP header 函数教程