我需要在 nginx 配置文件中设置一些规则。我对如何做到这一点有点迷失。这些是规则。
if (-f $document_root/cache/$host/$uri/index.html) {
rewrite (.*) /cache/$host/$1/index.html break;
}
if (-f $document_root/cache/$host/$uri.html) {
rewrite (.*) /cache/$host/$1.html break;
}
我的问题是:
- Rails 应用程序下的 nginx 配置文件位于何处以及该文件应如何命名?
- Heroku 会自动读取它吗?我阅读了用于定制部署的 buildpacks,但对于我确实需要的东西来说看起来有点复杂。