我会尝试它的工作原理:
1-创建配置文件
[req]
distinguished_name = req_distinguished_name
x509_extensions = v3_req
prompt = no
[req_distinguished_name]
C = FR
ST = HS
L = Somewhere
O = Organisation
OU = Organisation_Unit
CN = *.yourcustomaliasdomain.com
[v3_req]
keyUsage = keyEncipherment, dataEncipherment
extendedKeyUsage = serverAuth
不要忘记用应用引擎上的域配置替换 *.yourcustomaliasdomain.com
2- 创建 RSA 密钥
openssl genrsa -out key.pem 2048
3-创建请求签名
openssl req -new -key key.pem -out request.pem -config config
config 是配置文件
4-创建证书
openssl x509 -req -days 3650 -in request.pem -signkey key.pem -out cert.pem
5-上传和配置
在您的 google 应用程序控制台上上传 cert.pem 和 key.pem,如此处说明选择
您的 ssl 类型,通常应用程序引擎 url 必须与您的证书匹配,您可以添加它。