centos下的nginx安装部署
版本
- 1.12.2 statble版
安装
环境安装
1. gcc 安装
- 安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装:
yum install gcc-c++
2. PCRE pcre-devel 安装
- PCRE(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库。命令:
yum install -y pcre pcre-devel
3. zlib 安装
- zlib 库提供了很多种压缩和解压缩的方式, nginx 使用 zlib 对 http 包的内容进行 gzip ,所以需要在 Centos 上安装 zlib 库。
yum install -y zlib zlib-devel
4. OpenSSL 安装
- OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。
nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库。
yum install -y openssl openssl-devel
安装
下载
- 使用wget命令下载
#wget -c https://nginx.org/download/nginx-1.12.2.tar.gz
解压
#tar -zxvf nginx-1.12.2.tar.gz
#cd nginx-1.12.2
配置
- 普通配置
#./configure
- 如果有配置https的需要,则:
#./configure --with-http_ssl_module
安装
#make
#make install
查找安装路径:
#whereis nginx
然后启动即可,相关命令:
启动、停止nginx
#cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
-
./nginx -t
: 查看nginx.conf配置文件是否正确 -
./nginx -s quit
:此方式停止步骤是待nginx进程处理任务完毕进行停止。 -
./nginx -s stop
:此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程。
nginx配置https
- 由于使用了阿里云https证书,故该步骤参照了阿里云教程,将从阿里云上下载下来的证书保存到cert文件夹下,并将该文件夹放到nginx的conf文件夹下,并将以下配置添加:
server {
listen 443;
server_name localhost;
ssl on;
root html;
index index.html index.htm;
ssl_certificate cert/xxx.pem;
ssl_certificate_key cert/xxx.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
location / {
root html;
index index.html index.htm;
}
}
网友评论