0

我正在尝试使用我的 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应用程序?

4

1 回答 1

0

我想出了一个解决办法。我不知道我在做什么......在这个线程中找到了答案。

我将此添加到 default.vcl:

sub vcl_recv {
    set req.http.host = "gavedrysset-api.herokuapp.com";
}
于 2013-04-21T17:05:54.097 回答