nginx 的正则表达式位置

location wtih regex for nginx

我想用 django 处理 sitemap。所以我想将所有 sitemap.xmlsitemap-<somethings>.xml 代理到我的 django app.How 我应该在 nginx 中写我的位置表达式吗?

可以使用以下方法完成:

location ~ /sitemap(-.*|).xml$ {
        //
}

这样,从 sitemap.xmlDjango

的所有内容都应该被代理