nginx配置https的详细流程
时间:2022-09-07 11:14
详细配置流程如下:
(学习视频分享:编程视频)
1、下载SSL证书
2、两个证书放在cert目录上然后放到nginx 与nginx.conf同目录下
3、去nginx解压目录下执行
./configure --with-http_ssl_module
如果报错 ./configure: error: SSL modules require the OpenSSL library.则执行
yum -y install openssl openssl-devel ./configure ./configure --with-http_ssl_module
4、执行 make(切记不能 make install 会覆盖安装目录)
5、将原来 nginx 备份
cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak
6、将新的 nginx 覆盖旧安装目录
cp objs/nginx /usr/local/nginx/sbin/nginx
如果报错,执行
cp -rfp objs/nginx /usr/local/nginx/sbin/nginx
完成。
相关推荐:nginx教程
以上就是nginx配置https的详细流程的详细内容,更多请关注gxlsystem.com其它相关文章!