通过 NGINX 建立到 CloudFront 的代理传递是否保留了 CloudFront 的优势

发布于 2025-01-12 06:02:07 字数 289 浏览 0 评论 0原文

我在 NGINX 上有以下配置:

location ~ ^/app/ {
  proxy_pass_request_headers on;
  proxy_set_header X-Forwarded-For $remote_addr;
  proxy_pass https://my-cloudfront-distribution.cloudfront.net;
}

这足以启用 cloudfront 的所有缓存功能吗?也就是说,CloudFront 不会认为所有请求都来自 NGINX 服务器吗?

I have the following configuration on NGINX:

location ~ ^/app/ {
  proxy_pass_request_headers on;
  proxy_set_header X-Forwarded-For $remote_addr;
  proxy_pass https://my-cloudfront-distribution.cloudfront.net;
}

Is this sufficient for enabling all the cache features from cloudfront? Meaning, that, wouldn't CloudFront think that all the requests come from the NGINX server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文