我已经使用 ACM 创建了 SSL 证书。我想使用这个证书来提供来自 S3 存储桶和我的 lambda 的静态内容。目前,我想避免使用 CloudFront 并通过 API Gateway 代理 S3 和 Lambda,以便从单个 SSL 域提供所有内容(没有 CORS 问题)。
理想情况下,我会打电话给:
https://my.customdomain.com/ (lambda redirects to /web/index.html)
https://my.customdomain.com/api/* (lambdas)
https://my.customdomain.com/web/* (static content - s3)
上述架构是否合理/可能?