gpt4 book ai didi

amazon-web-services - 如何为 CloudFront 行为指定多个路径模式?

转载 作者:行者123 更新时间:2023-12-05 01:36:48 24 4
gpt4 key购买 nike

我有一个带有 s3 源和自定义源的 CloudFront 分配。我希望 /api/*/admin/* 上的所有流量都转到自定义源,所有其他流量都转到 s3 源。目前我只使用 /api/*:

                cloudfront.SourceConfiguration(
custom_origin_source=cloudfront.CustomOriginConfig(
domain_name=alb,
origin_protocol_policy=cloudfront.OriginProtocolPolicy.MATCH_VIEWER,
),
behaviors=[
cloudfront.Behavior(
allowed_methods=cloudfront.CloudFrontAllowedMethods.ALL,
path_pattern="/api/*",
forwarded_values={
"headers": ["*"],
"cookies": {"forward": "all"},
"query_string": True,
},
)
],
),

我可能会用 /api/* 重复这个行为,但我最终会添加一些额外的路径,这些路径需要路由到自定义源 (ALB),所以我想知道是否有一种更干的方法来做到这一点。

path_pattern 是否接受 /{api,admin,other}/* 样式模式?或者我应该重构行为部分以重用 allowed_methodsforwarded_values 然后用不同的 path_pattern 重复多个行为?

最佳答案

Does path_pattern accept /{api,admin,other}/* style patterns?

不,根据 documentation 不支持此图案样式.

should I refactor?

是的,您可以简单地将与此自定义原点对应的所有path_pattern 保存到一个列表中,比如path_patterns。然后使用简单方便的 Python 列表理解,

behaviors=[
cloudfront.Behavior(
allowed_methods=cloudfront.CloudFrontAllowedMethods.ALL,
path_pattern=pp,
forwarded_values={
"headers": ["*"],
"cookies": {"forward": "all"},
"query_string": True,
},
) for pp in path_patterns
]

关于amazon-web-services - 如何为 CloudFront 行为指定多个路径模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61705182/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com