当前位置:主页 > 服务器 > Nginx >

nginx添加ssl模块的方法教程

时间:2020-10-09 13:10:57 | 栏目:Nginx | 点击:

前言

原已经安装好的nginx,如果不清楚安装方法的朋友可以参考这篇文章:https://www.jb51.net/article/128758.htm

现在需要添加一个未被编译安装的ssl模块:

nginx -V 可以查看原来编译时都带了哪些参数

原来的参数:

--prefix=/app/nginx

添加的参数:

--with-http_stub_status_module --with-http_ssl_module --with-http_realip_module

步骤如下:

1. 使用参数重新配置:

./configure --prefix=/app/nginx -user=nobody -group=nobody --with-http_stub_status_module \
--with-http_ssl_module --with-http_realip_module \
--add-module=../nginx_upstream_hash-0.3.1/ \
--add-module=../gnosek-nginx-upstream-fair-2131c73/

2. 编译:

make
#不要make install,否则就是覆盖安装

3. 替换nginx二进制文件:

cp /app/nginx/sbin/nginx /app/nginx/sbin/nginx.bak
cp ./objs/nginx /app/nginx/sbin/

总结

您可能感兴趣的文章:

相关文章