linux 安装nginx

系统环境Centos 5.8


下载
wget http://nginx.org/download/nginx-1.9.5.tar.gz


安装依赖包
yum -y install gcc openssl openssl-devel pcre pcre-devel zlib
yum clean all


pcre  必须
openssl包用来支持HTTPS协议
zlib 支持Gzip压缩


也可源码下载安装
下载地址:
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz
wget http://zlib.net/zlib-1.2.8.tar.gz
wget http://www.openssl.org/source/openssl-1.0.2d.tar.gz


创建用户
groupadd www
useradd -r -g www -s /bin/false www
解压
>tar -xzf nginx-1.9.5.tar.gz
>cd nginx-1.9.5
编译安装
>./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-pcre


>make && make install;




参考
https://www.nginx.com/resources/admin-guide/installing-nginx-open-source/

你可能感兴趣的:(linux 安装nginx)