在Azure应用程序网关中设置SSL

时间:2018-09-20 14:42:04

标签: azure ssl azure-application-gateway

我在具有两个VM的Azure上设置了一个应用程序网关。现在,我正在尝试将SSL证书安装到一个域名中。

我上载了.cer文件,并且收到一条消息,提示已安装此证书。但是当我尝试使用https访问该网站时,什么也没发生。

是否可以逐步在Azure Application Gateway上安装证书?你能帮我吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

如果我的理解正确,则应该上传.pfx文件证书。单击HTTPS作为侦听器的协议,并确保将端口定义为443。

使用命令导出.pfx证书。

$pwd = ConvertTo-SecureString -String "Azure123456!" -Force -AsPlainText
Export-PfxCertificate \
  -cert cert:\localMachine\my\E1E81C23B3AD33F9B4D1717B20AB65DBB91AC630 \
  -FilePath c:\appgwcert.pfx \
  -Password $pwd

您可以从本指南中获得更多详细信息:Configure an application gateway with SSL termination using the Azure portal

希望这会有所帮助。