nginx安装配置
3.1. 源码编译方式: 安装 make:yum -y install autoconf automake make 安装 g++: yum -y install gcc gcc-c++ #一般系统中已经装了了make和g++,无须再装 yum -y install pcre pcre-devel yum -y install zlib zlib-devel yum install -y openssl openssl-devel #安装nginx依赖的库 wget http://nginx.org/download/nginx-1.15.8.tar.gz tar -zxvf nginx-1.15.8.tar.gz cd nginx-1.15.8 ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module #配置 #--prefix指定安装目录 #--with-http_ssl_module安装https模块 #creating objs/Makefile 代表编译成功 make && make install #make编译 #make install安装 3.2. yum方式: yum install yum-utils yum-config