0

plone.recipe.varnish在我的 Plone 应用程序中使用 1.2.2。

以下是我构建的一部分:

parts =
    ...
    instance
    paster
    varnish-build
    varnish
    plonesite  

...
[varnish-build]
recipe = zc.recipe.cmmi
url = http://downloads.sourceforge.net/project/varnish/varnish/2.1.3/varnish-2.1.3.tar.gz


[varnish]
recipe = plone.recipe.varnish
daemon = ${buildout:parts-directory}/varnish-build/sbin/varnishd
bind = 127.0.0.1:8000
backends = 127.0.0.1:9000
cache-size = 1G

我无法最终确定它是否有效。我的 Plone 应用程序在 port 上提供服务9000。所以我想通过去测试清漆是否真的有效,http://localhost:8000但我什么也没得到。浏览器说"Firefox can't establish a connection to the server at 127.0.0.1:8000."

我做错了吗?我已按照此处提供的说明进行操作,但没有取得进展。

如何plone.recipe.varnish在 Plone 中真正进行配置,以及如何实际测试它在本地开发机器中的工作原理?

4

1 回答 1

2

该配方不会启动您的清漆服务器。它只为您配置它。

使用类似的东西supervisord来管理流程,或者使用bin/varnish.

于 2012-11-26T13:28:39.747 回答