1) 下载Nginx-1.0.0.tar.gz安装包并解压安装包并移动到/usr/local/nginx目录:
tar xvf nginx-1.0.0.tar.gzmv nginx-1.0.0.tar.gz nginx
2)编译安装:
./configure --user=apache --group=apache --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --sbin-path=/usr/sbin --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --lock-path=/var/lock/subsys/nginx --with-http_gzip_static_module --http-client-body-temp-path=/var/cache/nginx/client_body_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --without-http_scgi_module --without-http_uwsgi_module --with-http_ssl_module --with-md5=/usr/lib/openssl/ --with-sha1=/usr/lib/openssl/ --without-http_fastcgi_modulemakemake install
3)建缓存文件夹和nginx启动脚本,并设置nginx开机启动:
mkdir /var/cache/nginxwget http://files.cnblogs.com/showblog/nginx.zip (启动脚本,下载解压生成nginx文件)cp nginx /etc/init.d/nginxchmod +x /etc/init.d/nginxchkconfig --add nginxchkconfig --level 2345 nginx on