Nginx: [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf
Nginx: [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf
Nginx: [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf
出现上面标题中的问题是因为我当初在安装Nginx
的时候没有安装SSL
模块,但是现在我在Nginx配置文件(nginx.cnf
)中配置了SSL
的相关配置信息。当我再次启动Nginx
的时候就提示我nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:111
了。下面我将我的解决方案给记录了下来,供大家参考哦!
解决问题
首先需要申明一下,我安装Nginx
的目录是 /usr/local/nginx/
,当时安装的时候是通过源码安装的,所以源码也在这个目录下面。接下来我们会利用源码加载 SSL 模块重新编译ÿ