nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in
时间: 2023-10-26 08:58:55 浏览: 276
详解nginx使用ssl模块配置支持HTTPS访问
5星 · 资源好评率100%
如果在配置 Nginx 的 HTTPS 监听时出现错误提示 `nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module`,这意味着你的 Nginx 编译时没有包含 `ngx_http_ssl_module` 模块。
要解决这个问题,可以按照以下步骤重新编译安装 Nginx,确保包含了 `ngx_http_ssl_module` 模块:
1. 确认你的系统中已经安装了 OpenSSL 库和开发包。可以使用以下命令安装:
- Ubuntu/Debian:`sudo apt-get install libssl-dev`
- CentOS/RHEL:`sudo yum install openssl-devel`
2. 下载 Nginx 的源代码包。可以从 Nginx 官方网站(http://nginx.org/en/download.html)下载最新稳定版本的源码。
3. 解压源代码包,并进入解压后的目录。
4. 使用以下命令配置编译参数,确保包含了 `--with-http_ssl_module`:
```
./configure --with-http_ssl_module
```
5. 运行以下命令编译和安装 Nginx:
```
make
sudo make install
```
6. 安装完成后,验证 Nginx 是否已经包含了 `ngx_http_ssl_module` 模块,可以使用以下命令查看编译参数:
```
nginx -V
```
在输出结果中,应该能够看到 `--with-http_ssl_module`。
7. 重新启动 Nginx:
```
sudo systemctl restart nginx
```
现在,你应该能够正常使用 `ssl` 参数配置 Nginx 的 HTTPS 监听了。
阅读全文