坚果互联 发表于 2024-12-12 11:22:02

【已解答】https加端口无法访问

https加端口号无法访问例如
https://stie.cn可以访问
https://site.cn:8181/就访问不了
这是为啥呢,求大佬指教
8181的端口开了安全组也开了宝塔里面也开了



坚果互联 发表于 2024-12-12 11:29:29

求求大佬

大炮运维V587 发表于 2024-12-12 12:02:24

您好,截图看看您的 网站配置文件中添加
listen 8181 ssl;
这个端口了吗?

坚果互联 发表于 2024-12-12 12:17:08

大炮运维V587 发表于 2024-12-12 12:02
您好,截图看看您的 网站配置文件中添加
listen 8181 ssl;
这个端口了吗?

server
{
                listen 8181;
    listen 8181 ssl http2;
    server_name *.web1.top 123.web1.top;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/web1.top;

    #CERT-APPLY-CHECK--START
    # 用于SSL证书申请时的文件验证相关配置 -- 请勿删除
    include /www/server/panel/vhost/nginx/well-known/web1.top.conf;
    #CERT-APPLY-CHECK--END

    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #HTTP_TO_HTTPS_START
    set $isRedcert 1;
    if ($server_port != 443) {
      set $isRedcert 2;
    }
    if ( $uri ~ /\.well-known/ ) {
      set $isRedcert 1;
    }
    if ($isRedcert != 1) {
      rewrite ^(/.*)$ https://$host$1 permanent;
    }
    #HTTP_TO_HTTPS_END

大炮运维V587 发表于 2024-12-13 11:04:07

坚果互联 发表于 2024-12-12 12:17
server
{
                listen 8181;


请不要重复添加 listen 8181,
否则会监听重复,nginx 无法加载新的配置的,把第一个listen 8181 端口换别的未使用得端口

宝塔用户_qkpiag 发表于 2024-12-29 16:51:24

大炮运维V587 发表于 2024-12-13 11:04
请不要重复添加 listen 8181,
否则会监听重复,nginx 无法加载新的配置的,把第一个listen 8181 端口换别 ...

9.3.0 版本更换完 https 的443 端口,不能访问了,端口都开着呢,浏览器提示:此网站无法提供安全连接

大炮运维V587 发表于 3 天前

宝塔用户_qkpiag 发表于 2024-12-29 16:51
9.3.0 版本更换完 https 的443 端口,不能访问了,端口都开着呢,浏览器提示:此网站无法提供安全连接 ...

您好,证书正确吗?
页: [1]
查看完整版本: 【已解答】https加端口无法访问