vps交流

[疑问] 有偿求助chevereto搬家后http能访问https不能访问


有偿求助
chevereto搬家后
http能访问
https不能访问
用之前的证书,自己申请新的都不行
宝塔后台强制https 也是访问不了
但是不用证书就可以正常访问
求大神帮助
确保 443 端口通

iks 发表于 2022-8-8 21:27
确保 443 端口通

443已开

网站配置文件发一下,削除敏感信息

server
{
    listen 80;
        listen 443 ssl http2;
    server_name 我的域名;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/我的域名;
   
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    ssl_certificate    /www/server/panel/vhost/cert/我的域名/fullchain.pem;
    ssl_certificate_key    /www/server/panel/vhost/cert/我的域名/privkey.pem;
    ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
    ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
    ssl_prefer_server_ciphers on;
    ssl_session_cache shared:SSL:10m;
    ssl_session_timeout 10m;
    add_header Strict-Transport-Security "max-age=31536000";
    error_page 497  https://$host$request_uri;

    #SSL-END
   
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    #error_page 404 /404.html;
    #error_page 502 /502.html;
    #ERROR-PAGE-END
   
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-74.conf;
    #PHP-INFO-END
   
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/我的域名.conf;
    #REWRITE-END
   
    #禁止访问的文件或目录
    location ~ ^/(.user.ini|.htaccess|.git|.svn|.project|LICENSE|README.md)
    {
        return 404;
    }
   
    #一键申请SSL证书验证目录相关设置
    location ~ .well-known{
        allow all;
    }
   
    location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log /dev/null;
        access_log /dev/null;
    }
   
    location ~ .*.(js|css)?$
    {
        expires      12h;
        error_log /dev/null;
        access_log /dev/null;
    }
    access_log  /www/wwwlogs/我的域名.log;
    error_log  /www/wwwlogs/我的域名.error.log;

iks 发表于 2022-8-8 21:41
网站配置文件发一下,削除敏感信息

已发 大佬 帮忙看看

金闪闪 发表于 2022-8-8 21:49
已发 大佬 帮忙看看

https 访问提示什么

iks 发表于 2022-8-8 21:59
https 访问提示什么

无法访问此网站  意外终止了连接。

或许可以查看日志,有没有提示信息。
curl -vvvv url
赞(0)
版权声明:本贴采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
帖子名称:《[疑问] 有偿求助chevereto搬家后http能访问https不能访问》
帖子链接:https://bbs.toot.su/151650.html

相关推荐