相关疑难解决方法(0)

Azure Web角色 - 指向单个端点的多个ssl证书

有没有办法让多个ssl证书指向服务定义中的单个inputendpoint?例如,假设我有两个网址.

service.foo.net/Service.svc

service.doo.net/Service.svc

我希望这两个地址都解析为我的Windows Azure服务,但我不知道如何在服务定义中配置它.

<Certificates>
   <Certificate name="service.foo.net" storeLocation="LocalMachine" storeName="My" />
   <Certificate name="service.doo.net" storeLocation="LocalMachine" storeName="My" />
  </Certificates>
  <Endpoints>
   <InputEndpoint name="HttpsIn" protocol="https" port="443" certificate="service.foo.net" />
  </Endpoints>
Run Code Online (Sandbox Code Playgroud)

根据这篇MSDN文章,每个输入端点必须具有唯一的端口.有没有办法为此端点指定多个证书?

ssl azure ssl-certificate

12
推荐指数
2
解决办法
2881
查看次数

标签 统计

azure ×1

ssl ×1

ssl-certificate ×1