通过 NGINX 建立到 CloudFront 的代理传递是否保留了 CloudFront 的优势
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论