通过 windows-MY 密钥库的 Spring-Boot HTTPS

发布于 2025-01-11 02:02:06 字数 219 浏览 0 评论 0原文

我正在尝试使用 windows-MY 密钥库为我们的 spring-boot Web 服务启用 HTTPS,因为我们的一些客户不想使用位于文件系统上的密钥库。

我确实知道可以自行配置 tomcat 以使用 windows-MY 密钥库,但是我无法找到任何有关 spring-boot 的信息。

是否可以将 windows-MY 密钥库与 spring-boot 一起使用,如果可以,我该如何配置?

I am trying to enable HTTPS for our spring-boot web service using the windows-MY keystore since some of our customers do not want to use a keystore located on the file-system.

I do know that it is possible to configure tomcat by itself to use the windows-MY keystore, however I am unable to find any information as to do this for spring-boot.

Is it possible to use the windows-MY keystore with spring-boot and if so, how do I configure this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小情绪 2025-01-18 02:02:07

在您的 application.yml 文件中添加以下部分。在下面的示例中,它正在读取 Visual Studio 之前生成并放置在 Windows 个人证书存储中的证书

server:
  port: 8443
  ssl:
    enabled: true
      key-store: .
      key-store-type: windows-MY
      key-alias: ASP.NET Core HTTPS development certificate

In your application.yml file add the following section. In the example below it is reading the certificate that visual studio generated previously and placed in the windows personal certificate store

server:
  port: 8443
  ssl:
    enabled: true
      key-store: .
      key-store-type: windows-MY
      key-alias: ASP.NET Core HTTPS development certificate
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文