使用 Cloudfront 作为反向代理

使用 Cloudfront 作为反向代理

为其设置分发的原始域

www.acme.com

设置原点:

Origin Domain Name: pre-prod.backend.com
Origin Path: /abc/asset/acme

分发的缓存行为设置:

Path Pattern: /asset/*

我期望当我请求时

https://www.acme.com/asset/picture.jpg

它反向代理到:

https://pre-prod.backend.com/abc/asset/acme/picture.jpg

这是可能的吗?还是我必须使用像 nginx 这样更复杂的东西?

相关内容