3

我有一个 Google Cloud 项目,其中包含一个计算引擎实例,我想将其配置为 Cloud Pub/Sub 服务的推送订阅者。我已经在实例上设置了一个带有自签名证书的 apache 网络服务器,并且还创建了一个指向具有静态 IP 地址的实例的 DNS 条目 (abc.mydomain.com)。我已经是网站管理员上域 (mydomain.com) 的经过验证的所有者。

每当我从云控制台添加订阅时,它都会失败并显示错误:“无法添加订阅”并且不显示任何其他有用信息。

请帮忙。

4

1 回答 1

4

Self-signed certificates are not supported. There are few options for you:

  1. Pay for the certificate
  2. Use App Engine as a proxy
  3. Use pull subscriptions
  4. Use App Engine Managed VM

The last one is basically a Compute Engine instance, but you will get free https connection via a subdomain of appspot.com.

于 2015-09-28T17:10:09.273 回答