我要使用Windows Azure。然而,我的管理员反对我使用它。据我所知,我可以设置一个私有云,这样我就可以在内部环境中使用Azure的功能。我说服他让我试一试。我有一台Windows Server 2008服务器,可以在上面试用。不幸的是,我不知道如何设置私有云。
有没有人知道如何做的一步一步的演练?或者我误解了私有云的概念?非常感谢你的见解。
我试图使用客户端的前置SMTP服务器发送电子邮件使用应用程序引擎标准。为此,我们在默认网络和具有静态ip地址的Cloud中创建了Serverless VPC访问连接器,以发送出口流量。客户端已白化静态ip地址和端口。以下是应用程序引擎中的代码片段
msg.set_content('This is a HTML email')
msg.add_alternative(cleared_html_content, subtype='html')
try:
context = ssl._create_unverified_con
我有一个云函数(fce_a),我需要从同一个GCP项目和区域中的另一个云函数(fce_b)调用它。当我将fce_a设置为Allow all traffic (在Ingress settings中)时,它可以完美地工作(使用this method)。但是,当我将fce_a设置为Allow internal traffic only (在Ingress settings中)时,我得到的是Error 403 (Forbidden) 403. That's an error. Access is forbidden. That's all we know. (提到的here)。 我尝