Bad Request This combination of host and port requires TLS

作者
2025-08-27阅读 22

1、错误信息

Bad Request

This combination of host and port requires TLS

2、解析

要求访问必须使用https。

3、问题原因

我这里其实就是普通的http访问,并没有预备配置上ssl。

我这里出现这个问题的原因是:我的后端服务的application.yml中有这么一段配置

server:
  # 服务器的HTTP端口,默认为80
  port: 8081
  ssl:
    enabled: true
    #指定证书
    key-store: classpath:test.com.cn.pfx
    key-store-type: PKCS12
    #密码
    key-store-password: 8w2v13d3aph0

由于这个配置,导致了后端服务强制要求使用https。所以在已开始访问的时候会报错



全部评论

头像
乌兔
前端开发
私信
获得点赞 445
文章被阅读 31,261