我们在 Amazon AWS 上的 S3 存储桶中托管了一些 xml 文件。Web 服务器由 Nginx 提供支持。对于与 '/super-shots.xml' 匹配的特定 URL,Nginx 必须通过 S3 位置进行代理传递,该位置为:http://mybucket.s3.amazonaws.com/depth0/depth1/depth2/sitemap.xml
我想要的是这个(Nginx 配置):
location ~* /super-shots.xml {
proxy_pass http://mybucket.s3.amazonaws.com/depth0/depth1/depth2/sitemap.xml;
}
结果是错误:
nginx:[emerg]“proxy_pass”不能在正则表达式给出的位置、命名位置内、if 语句内或 limit_except 块内有 URI 部分
如果我不进行正则表达式匹配(~*|~),则没有语法错误,但页面返回 404。请注意,该文件在系统路径上不存在。
我尝试寻找解决方案,但大多数都以路径作为匹配项。我该如何解决这个问题?
目前,我已经完成了一个基于路径的代理传递,它可以工作(如下所示)。但是,我希望它与 URL 匹配。
#Nginx Config:
location /super-shots {
proxy_pass http://mybucket.s3.amazonaws.com/depth0/depth1/depth2/sitemap.xml;
}
# On file system : Empty directory
mkdir $docroot/depth0/depth1/depth2/
nginx -s reload
更新 1:根据 Alexey Ten 的评论。可以找到 Nginx 配置示例这里
答案1
简单的你试过吗?
location = /super-shots.xml {
proxy_pass http://mybucket.s3.amazonaws.com/depth0/depth1/depth2/sitemap.xml;
}
您不需要本地文件系统上的任何东西。
您的问题是请求/super-shot.xml
匹配location ~* \.(js|ico|...xml...
。使用=
后缀,我们告诉 nginx,此精确请求应在此处处理,并且它不得寻找其他可能匹配的位置。