无与伦比

Nginx安装和使用简介

nginx下载地址: http://nginx.org/en/download.html
我使用的是 nginx-1.7.9

安装

下载以后解压并安装(请记得看README)

./configure

(注意了类似checking for *** … not found项,可能是依赖包没有,则需要安装依赖包)(我没有遇到这些问题)

缺少pcre,则需要额外安装 http://www.pcre.org/ (或者采用apt-get或yum的安装方式)
sudo apt-get install libpcre3 libpcre3-dev
缺少zlib,则需要额外安装 http://www.zlib.net/ (或者采用apt-get或yum的安装方式)
缺少OpenSSL,则需要额外安装 http://www.openssl.org (或者采用apt-get或yum的安装方式)
sudo apt-get install openssl libssl-dev
如果需要配置安装额外的功能模块,可以参考这里 http://wiki.codemongers.com/NginxChsInstall

make
make install (默认安装到/usr/local/nginx)

配置管理

1.启动

/usr/local/nginx/sbin/nginx (默认启动方式)
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf (指定配置文件启动)

2.停止

sudo /usr/local/nginx/sbin/nginx -s stop(我是这样子停止的)

访问

http://localhost/

参考:http://blog.csdn.net/five3/article/details/7732832

退出移动版