使用heroku应用设置Varnish - 我使用什么后端主机和端口?

时间:2013-04-18 12:51:04

标签: heroku varnish

我正在尝试使用我的Heroku应用程序设置Varnish服务器。我在设置后端主机和端口以指向我的heroku应用程序时遇到了困难。

我尝试这样输入:

backend default {
    .host = "gavedrysset-api.herokuapp.com";
    .port = "80";
}

这不起作用,并给我一个heroku错误页面说:

Heroku | No such app

There is no app configured at that hostname.
Perhaps the app owner has renamed it, or you mistyped the URL.

如何让清漆指向我的heroku应用程序?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。我不知道我在做什么...... 在this主题中找到答案。

我将此添加到default.vcl:

sub vcl_recv {
    set req.http.host = "gavedrysset-api.herokuapp.com";
}