您现在的位置是: 首页 > 运维 nginx 出现 the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in 错误解决方案
nginx 出现 the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in 错误解决方案
2020-05-20 【运维】 2641人已围观 6846次浏览
简介nginx 出现 the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in 错误解决方案
在nginx中使用 ssl 时,出现下面的错误提示
the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in
这是由于 nginx 版本升级到 1.15 之后才会出现的问题
在低于 1.15 的 nginx 版本中,开启 ssl 一般都是这样的配置
listen 443;
ssl on;
但是在 1.15 版本之后,就要删掉 ssl on 这行配置,并根据提示信息,将 ssl 加在端口监听的后面(也就是之前的两行配置,合并为一行即可),比如
listen 443 ssl;
然后重启 nginx 即可解决
很赞哦! (0)
相关文章
- Oracle ORA-12541:TNS:no listener错误解决方法
- 自建Ngrok服务端
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作
- Windows CMD 常用命令
- Debian/Ubuntu无netstat命令解决方案
- sentinel directive while not in sentinel mode 问题解决
- 使用 OpenSSL 将 pfx 格式证书转为 pem 格式
- Zookeeper 找不到或无法加载主类 org.apache.zookeeper.server.quorum.QuorumPeerMain
- 常见端口号
- mysql 索引过长1071-max key length is 767 byte
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Debian apt 使用国内镜像
- 【代码片段】MySQL 查看数据库所有表注释
- docker mysql 导入 SQL 脚本
- Vue 路由跳转后不在顶部
- 防止Time Machine备份Parallels Desktop的虚拟硬盘文件
- Chrome 谷歌浏览器清除HTTPS证书缓存
- LNMP定时备份任务教程(支持排除指定文件夹)
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- 在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案
- start.spring.io访问太慢,构建SpringBoot项目失败