我们可以检查哪个区域是我们在 AWS 上的站点的请求吗?
Can we check which region is the request coming in for our site on AWS?
我想知道是否可以指出主要来自地理区域的请求。
例如以下架构:
route53 -> LB -> Ec2.
是否有可能或者我们应该做任何架构上的改变来找出答案?
使用 AWS 服务获取地理位置信息的一种方法是通过 CloudFront,它最近添加了地理位置 headers:
The new headers give you more granular control of cache behavior and your origin access to the viewer’s country name, region, city, postal code, latitude, and longitude, all based on the viewer’s IP address.
要使用它,您必须将 CloudFront 发行版添加到您当前的架构中:
Route53 -> CloudFront -> LB -> EC2
我想知道是否可以指出主要来自地理区域的请求。
例如以下架构:
route53 -> LB -> Ec2.
是否有可能或者我们应该做任何架构上的改变来找出答案?
使用 AWS 服务获取地理位置信息的一种方法是通过 CloudFront,它最近添加了地理位置 headers:
The new headers give you more granular control of cache behavior and your origin access to the viewer’s country name, region, city, postal code, latitude, and longitude, all based on the viewer’s IP address.
要使用它,您必须将 CloudFront 发行版添加到您当前的架构中:
Route53 -> CloudFront -> LB -> EC2