Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用适用于 PHP 版本 2 的 AWS 开发工具包来启动和停止 Ec2 实例。如何设置 Ec2Client 对象(或我应该选择什么方法)以使用 https 连接而不是 http?
有人能帮我吗?谢谢。
默认情况下它还没有使用https连接吗?
您可以在实例化客户端时使用“方案”选项将 EC2 客户端设置为使用 http 或 https。
$client = Aws\Ec2\Ec2Client::factory(array( 'key' => '<aws access key>', 'secret' => '<aws secret key>', 'region' => '<region name>', 'scheme' => 'https', ));