Nginx部署WordPress支持SSL和伪静态

Nginx部署WordPress支持SSL和伪静态

server { listen 443; root /home/wwwroot/wenzhancc/wwwroot; ssl on; ssl_certificate /home/ssl/www.wenzhan.cc.crt; ssl_certificate_key /home/ssl/www.wenzhan.cc.key; ssl_pref...

21 天前 admin 70 阅读
Windows系统PHPstudy Apache 配置https

Windows系统PHPstudy Apache 配置https

PHPstudy按照以下代码编辑配置文件。 SSLStrictSNIVHostCheck off SSLCipherSuite HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!EXP:+MEDIUM SSLHonorCipherOrder on SSLProtocol all ...

22 天前 admin 26 阅读
nginx 如何配置该链接使用TLS1.3如何改成1.2

nginx 如何配置该链接使用TLS1.3如何改成1.2

要将 Nginx 配置中的 TLS 版本更改为 TLS 1.2,请按照以下步骤进行操作: 1、打开 Nginx 配置文件。通常,该文件位于 /etc/nginx/nginx.conf 或 /etc/nginx/conf.d/default.conf。 如...

2024-10-29 admin 54 阅读
phpcms开启https后出现重定向循环或打不开的解决办法

phpcms开启https后出现重定向循环或打不开的解决办法

Phpcms不支持https的解决办法,修改文件,使用https协议。 1、\phpcms\libs\functions\global.func.php 找到: $url = str_replace(array('http://','//','~'), array('~','/','htt...

2024-06-29 admin 26 阅读
tomcat 多站点部署https

tomcat 多站点部署https

<Connector port="443" protocol="org.apache.coyote.http11.Http11Nio2Protocol" SSLEnabled="true" defaultSSLHostConfigName="域名.com"> <SSLHostConfig hostName="域名.com...

2024-06-29 admin 14 阅读
帝国CMS开启https,打开后台空白的解决办法。

帝国CMS开启https,打开后台空白的解决办法。

1、7.5及以上版本  7.5版本 http和https 可以自动识别,但有时候自动识别判断的不准,后台登录也是空白, 可以打开  e/config/config.php 查找   ’httptype’=>0   改为’httptype...

2024-02-29 admin 17 阅读
The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection.

The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection.

The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection. 原因是使用apache 由...

2023-12-29 admin 63 阅读
宝塔面板开启面板SSL后打不开

宝塔面板开启面板SSL后打不开

宝塔面板开启面板SSL后,使用http地址,访问面板地址会提升 连接被重置 “ERR_CONNECTION_RESET”    如图。 解决办法 1、请访问   https://宝塔地址:端口/入口   2、若出现 如提...

2023-11-29 admin 20 阅读
Ubuntu Server 20.04 使用Certbot申请免费泛域名SSL证书

Ubuntu Server 20.04 使用Certbot申请免费泛域名SSL证书

测试使用环境 Ubuntu Server 20.04 cerbot版本1.7.0 1、登录服务器,需要有root权限。 2、执行命令:sudo apt install certbot (如果报错 请执行命令 sudo apt-get update ,请参...

2021-12-29 admin 68 阅读
HTTPS的常见错误及解决方案-火狐浏览器篇

HTTPS的常见错误及解决方案-火狐浏览器篇

SEC_ERROR_EXPIRED_CERTIFICATE 网站的SSL证书有效期过期导致的 申请新的SSL证书 SSL_ERROR_BAD_CERT_DOMAIN 访问的域名和证书绑定的域名不一致导致 请检查访问的域名或者证...

2021-12-29 admin 43 阅读