Nginx配置https的wordpress站点,wp-content目录下资源404解决方案
2021-07-17 02:05
标签:cer out nginx配置 修改 http word cert pre 配置 wordpress 下配置 ssl证书, http访问的时候,/wp-content/下的资源一律为404: 后将配置修改为 所有资源请求正常! Nginx配置https的wordpress站点,wp-content目录下资源404解决方案 标签:cer out nginx配置 修改 http word cert pre 配置 原文地址:http://www.cnblogs.com/wpjamer/p/7067947.htmlserver {
listen 443;
server_name demo.example.com;
ssl on;
root /data/;
ssl_certificate /cert/cert.pem;
ssl_certificate_key /cert/cert.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
}
server {
listen 443 ssl;
server_name demo.example.com;
root /data/;
ssl_certificate /cert/cert.pem;
ssl_certificate_key /cert/cert.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
}
文章标题:Nginx配置https的wordpress站点,wp-content目录下资源404解决方案
文章链接:http://soscw.com/essay/106151.html