zoukankan
html css js c++ java
nginx 提示the "ssl" directive is deprecated, use the "listen ... ssl" directive instead
该问题是由于新版nginx采用新的方式进行监听https请求了解决方式如下:
在listen中改为
listen
443 ssl;
删除ssl配置
# ssl on;
解决完成前后的配置如下
解决前:
server {
listen
443 ;
ssl
on; }
解决后
server {
listen
443 ssl ; }
查看全文
相关阅读:
【转】Testing, Thought, and Observations
【转】Yet another software testing pyramid
【转】Automated Testing and the Test Pyramid
Environment setting up troubleshoot.
[转] Spring相关
流水账
Abbreviation
chrome中文本框样式问题
Intellij IDEA 使用总结
限制
原文地址:https://www.cnblogs.com/123hll/p/12253238.html
最新文章
手势密码源码
IOS求职之OC面试题完整版---持续更新中...
基于Wi-Fi的室内定位在美团总部的实践和应用
Icon and Image Sizes IOS 8.0 apple
IOS 8.0 适配应用图片设计
IOS框架和服务
如何在IOS中使用3D UI – CALayer的透视投影
常用常看
struts1.x完整实例
关于Mysql中文乱码问题该如何解决
热门文章
mysql 学习
当编程作为一种习惯
当编程作为一种爱好
算法 algorithms
转oracle查询功能
学习c++语法
网络创业
数据库相关
Camel
【转】How Google Tests Software
Copyright © 2011-2022 走看看