185 articles
Friday, Apr 10, 2020
docker常用命令大全整理收藏版 apt-get install docker-ce 安装docker apt-get -y autoremove docker- 卸载docker docker ps -a 查看宿主机(物理服务器)所有容器 docker exec -it Debian /bi...
Tuesday, Apr 7, 2020
docker容器下的MySQL远程连接配置方法 查看docker运行的进程 docker ps -a 显示如下 CONTAINER ID IMAGE COMMAND CREATED STATUS ...
MySQL remote connection configuration method under docker container View the processes running by docker docker ps -a Show as below CONTAINER ID ...
The following warning appeared when reloading Nginx nginx: warn" sslstapling "ignored, not supported This error is telling you that the ssl configured...
重载Nginx时出现了下面的告警 nginx: warn "sslstapling" ignored, not supported 这个错误是告诉你网站配置的ssl,缺少了完整的证书链。。。 自行补全,添加证书链即可
Friday, Apr 3, 2020
If you want to further improve the security of the website, for example, to prevent the website from being collected more effectively, You can try to ...
编译nginx时出现了下面的告警 nginx "--with-ipv6" option is deprecated 查阅相关文档,原来最新版的nginx编译不需要添加--with-ipv6命令 最新版的nginx默认已经自带ipv6模块
nginx 开启http3 QUIC和配置Brotli压缩和反向代理的详细教程 nginx 配置http3 QUIC参阅这篇文章 https://www.vpslala.com/t/403 在上面的配置中编译Nginx时添加以下代码 git clone https://github.com/goog...
Nginx: emerg unknown directive" setrealipfrom " appears because nginx is missing the realip module Add the realip module to compile again. . . ./confi...
出现nginx: emerg unknown directive "setrealipfrom"是因为nginx缺少了realip模块 重新添加realip模块编译即可。。。 ./configure --prefix=/usr/local/nginx --user=www-data --group=...