一般情况下安装的nginx是没有https模块,检查
如上图所示,此时nginx是不支持https模块,需要安装
进入nginx解压目录,执行
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
再次执行
make #切记不要执行make install,否则会重新安装nginx
上述操作执行完成以后,你的目录下会出现objs文件夹,文件夹内存在nginx文件,如图:
接下来使用新的nginx文件替换掉之前安装目录sbin下的nginx,注意这里的替换的时候可以先将之前的文件备份下,停掉nginx服务
nginx -s stop
启动nginx
nginx -c /usr/local/nginx/conf/nginx
###########################模块添加完成#############################################