如果 Web 应用程序通过 Azure 应用程序服务托管,如何读取证书

问题描述 投票:0回答:2

我有一个 asp.net core web api (app1) 应用程序,它正在调用另一个 asp.net core web api (app2),我正在考虑将 app1 作为守护应用程序,我想使用证书而不是应用程序机密来跟踪客户端凭据。

https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/tree/master/2-Call-OwnApi#variation-daemon-application-using-client-credentials-with-certificates

一切正常,直到我的

app1
app2
都在本地计算机上运行,我正在本地计算机上读取如下所示的证书,

private static X509Certificate2 ReadCertificate(string certificateName)
    {
        if (string.IsNullOrWhiteSpace(certificateName))
        {
            throw new ArgumentException("certificateName should not be empty. Please set the CertificateName setting in the appsettings.json", "certificateName");
        }
        X509Certificate2 cert = null;

        using (X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser))
        {
            store.Open(OpenFlags.ReadOnly);
            X509Certificate2Collection certCollection = store.Certificates;

            // Find unexpired certificates.
            X509Certificate2Collection currentCerts = certCollection.Find(X509FindType.FindByTimeValid, DateTime.Now, false);

            // From the collection of unexpired certificates, find the ones with the correct name.
            X509Certificate2Collection signingCert = currentCerts.Find(X509FindType.FindBySubjectDistinguishedName, certificateName, false);

            // Return the first certificate in the collection, has the right name and is current.
            cert = signingCert.OfType<X509Certificate2>().OrderByDescending(c => c.NotBefore).FirstOrDefault();
        }
        return cert;
    }

证书位于本地计算机中,我正在从这里读取它,

 using (X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser))

现在我想使用azure应用程序服务托管app1和2,现在的问题是如何读取证书?

谢谢!

c# azure-active-directory certificate asp.net-core-3.1
2个回答
0
投票

在 Azure 计算(例如应用程序服务)上部署时,不存在可用的

local
磁盘或证书存储。

因此,除了对应用程序配置进行建议的更改之外,您还需要执行以下操作

  1. 将您的证书存储在 KeyVault (或同等文件)中并从您的代码中获取它
  2. 更好的是,考虑使用托管身份

0
投票

您需要使证书可访问。您可以添加应用程序设置:

WEBSITE_LOAD_CERTIFICATES
,并加载要加载的
comma-separated certificate thumbprints
值。

参考: 在 Azure 应用服务的代码中使用 TLS/SSL 证书

© www.soinside.com 2019 - 2024. All rights reserved.