标签:
参考该网站 http://www.nginx.cn/install
centos平台编译环境使用如下指令
安装make:
yum -y install gcc automake autoconf libtool make
安装g++:
yum install gcc gcc-c++
一般我们都需要先装pcre, zlib,前者为了重写rewrite,后者为了gzip压缩。
1.选定源码目录
可以是任何目录,本文选定的是/home/fupeng/src
cd /home/fupeng/src
2.安装PCRE库
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ 下载最新的 PCRE 源码包,使用下面命令下载编译和安装 PCRE 包:
cd /home/fupeng/src
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.34.tar.gz
tar -zxvf pcre-8.34.tar.gz
cd pcre-8.34
./configure
make
make install
3.安装zlib库
http://zlib.net/zlib-1.2.8.tar.gz 下载最新的 zlib 源码包,使用下面命令下载编译和安装 zlib包:
cd /home/fupeng/src
wget http://zlib.net/zlib-1.2.8.tar.gz
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make
make install
4.安装ssl(某些vps默认没装ssl)
cd /usr/local/src
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar -zxvf openssl-1.0.1c.tar.gz
./configure
make
make install
5.安装nginx
Nginx 一般有两个版本,分别是稳定版和开发版,您可以根据您的目的来选择这两个版本的其中一个,下面是把 Nginx 安装到 /home/fupeng/nginx 目录下的详细步骤:
cd /home/fupeng/src
wget http://nginx.org/download/nginx-1.4.2.tar.gz
tar -zxvf nginx-1.4.2.tar.gz
cd nginx-1.4.2
./configure --sbin-path=/home/fupeng/nginx/nginx --conf-path=/home/fupeng/nginx/nginx.conf --pid-path=/home/fupeng/nginx/nginx.pid --with-http_ssl_module --with-pcre=/home/fupeng/src/pcre-8.34 --with-zlib=/home/fupeng/src/zlib-1.2.8 --with-openssl=/home/fupeng/src/openssl-1.0.1c
make
make install
–with-pcre=/usr/src/pcre-8.34 指的是pcre-8.34 的源码路径。
–with-zlib=/usr/src/zlib-1.2.7 指的是zlib-1.2.7 的源码路径。 如果你的目录不是这个,就改成自己的路径。
6,启动
在安装目录下 nginx.conf 是配置文件 , 介绍两个配置项
server {
listen 8090;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /home/work/www;
index index.html index.htm;
}
listen 8090 是监听的端口设置为8090
root /home/work/www; 是网站根目录位置
设置完后, 直接运行 nginx 即可。
./nginx
打开浏览器访问此机器的 IP:port ,如果浏览器出现 Welcome to nginx! 则表示 Nginx 已经安装并运行成功。
标签:
原文地址:http://blog.csdn.net/u012063703/article/details/46648237