gpt4 book ai didi

azure - 如何使用 Powershell 将证书添加到 Azure RM 网站

转载 作者:行者123 更新时间:2023-12-02 06:54:23 25 4
gpt4 key购买 nike

How to add an SSL certificate to an azure website using powershell? 轻微相关

我正在尝试通过 Powershell 将证书添加到 Azure RM 网站。

我认为没有直接的 Azure Powershell 命令,需要通过 New-AzureRmResource 来完成

最佳答案

在最新版本的 Azure PowerShell v 1.1.0 中,有许多新命令可用于处理 Azure Web 应用中的 SSL 证书

您可以上传证书并将其绑定(bind)到主机名

New-AzureRmWebAppSSLBinding -ResourceGroupName myresourcegroup -WebAppName mytestapp -CertificateFilePath PathToPfxFile -CertificatePassword PlainTextPwd -Name www.contoso.com

然后删除绑定(bind),但不删除证书,在添加引用该证书的应用程序设置后,应用程序应该能够使用它(这应该使用门户完成 - 即将推出执行此操作的 PowerShell 命令 -目前没有预计到达时间)

Remove-AzureRmWebAppSSLBinding -ResourceGroupName myresourcegroup -WebAppName mytestapp -Name www.contoso.com -DeleteCertificate $false

关于azure - 如何使用 Powershell 将证书添加到 Azure RM 网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34727287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com