runxinzhi.com
首页
百度搜索
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 ; }
相关阅读:
xfce4-windowck-plugin的替代品
git使用Beyond Compare作为diff和merge工具
Visual Studio设置多个快捷键
scrapy参数-COOKIES_ENABLED 最权威解释, 帮你避坑
Linux基础使用
python 所有的库整理
Nginx配置详解
15个常用的javaScript正则表达式
Redis开发建议
mysql 同步大量数据小技巧
原文地址:https://www.cnblogs.com/123hll/p/12253238.html
最新文章
pytest--conftest.py用法(单独存放fixtrue配置的一个文件)
pytest--fixture基本使用(主要用来进行测试环境的初始化和清理,fixture中的params参数还可以用来进行参数化)
pytest--pytest基本介绍
python编码问题记录
RuntimeError: working outside of request context
python多线程的实现方法总结
python多线程与多进程
正则表达式
mysql操作笔记
第二部分 目录,文件与磁盘格式
热门文章
python 读写json
Xtrabackup数据库热备份记录
mysql全备份 + 增量备份
python lambda函数参数传递之坑
bashrc部分常用设置
ffmpeg:视频提取mp3和flac转mp3
vim显示中文乱码
git clone/pull 仓库单个目录、文件夹
git failed to unlink xxxxx
git-lfs文件坏掉的问题 Encountered 2 file(s) that should have been pointers, but weren't
Copyright © 2020-2023
润新知