admin管理员组文章数量:1344646
I have an AWS Lambda function connected to an API Gateway (Regional HTTP API) and my domain is linked to CloudFront. However, my application's canonical URL is being set to the API Gateway domain instead of my CloudFront domain. How can I ensure that my Lambda function correctly uses the CloudFront domain in the canonical URL when for example react or qwik js generates SSR?
I have an AWS Lambda function connected to an API Gateway (Regional HTTP API) and my domain is linked to CloudFront. However, my application's canonical URL is being set to the API Gateway domain instead of my CloudFront domain. How can I ensure that my Lambda function correctly uses the CloudFront domain in the canonical URL when for example react or qwik js generates SSR?
Share Improve this question asked 9 hours ago Aren SadeAren Sade 5661 gold badge9 silver badges26 bronze badges1 Answer
Reset to default 0To ensure your Lambda function receives the correct domain (CloudFront instead of API Gateway), you need to configure CloudFront to forward the Host
header. By default, CloudFront may replace the Host
header with the API Gateway domain, which can result in an incorrect canonical URL.
Unfortunately, as far as I know, there is no direct way to pass the user's Host
value from CloudFront to API Gateway and then to the Lambda function. However, a workaround I found is to create a whitelist header in CloudFront that exlude the Host
value. Then, in API Gateway, you can use "parameter mapping" to set a static domain address (without the http(s)
protocol, e.g., example
).
While this may not be an ideal solution, it at least helps maintain consistency across different deployments, such as staging and production.
本文标签:
版权声明:本文标题:How can I ensure my AWS Lambda function uses the CloudFront domain instead of the API Gateway URL for the canonical link in my Q 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745929a2531754.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论