Questions tagged «proxies»

3
如果使用清漆,使用“升压”模块是否多余?
我们在Varnish服务器后运行Drupal实例,但我们正在寻找其他/其他方式来加速站点。Boost是为此经常被命名的模块。它似乎会生成静态版本的页面,并为这些页面提供服务,以避免重新生成时间,但是-如果我们已经使用清漆进行缓存-这对我们有好处吗?

2
结合使用带有APC,Varnish和Memcache的Drupal 7,将哪些容器放入哪个缓存中?
我正在优化Drupal 7网站,并且已经安装了清漆,内存缓存和APC,并使用了它们各自的Drupal 7模块。在我的settings.php中,有以下$conf选项。 我的问题是要获得更好的性能,并使所有这些缓存协同工作,我是否需要添加更多配置选项? 模块自述文件通常假定使用单个缓存系统。通过运行3个单独的缓存后端,是否需要任何技巧来获得更好的性能? // Add Varnish as the page cache handler. $conf['cache_backends'][] = 'sites/all/modules/varnish/varnish.cache.inc'; $conf['cache_class_cache_page'] = 'VarnishCache'; // Drupal 7 does not cache pages when we invoke hooks during bootstrap. // This needs to be disabled. $conf['page_cache_invoke_hooks'] = FALSE; $conf['cache_backends'][] = 'sites/all/modules/apc/drupal_apc_cache.inc'; $conf['cache_class_cache'] = 'DrupalAPCCache'; $conf['cache_class_cache_bootstrap'] = 'DrupalAPCCache'; …

1
“ Vary:Cookie”标头实际上对从Varnish投放的网页有什么作用?
根据default.settings.php中的文档,我在其他地方也看到过类似的描述, "Without "Vary:Cookie", authenticated users would also be served the anonymous page from the cache." 但是$conf['omit_vary_cookie'] = TRUE;,建议在Drupal 7中与Varnish一起使用,似乎并不能阻止用户从匿名会话切换到经过身份验证的会话。这是Varnish实际不关心的标头吗?
9 7  proxies 

4
更新代理背后的状态
我在一个简单的HTTP代理后面的Intranet中运行Drupal。我希望模块和核心更新检查能够正常工作。 我似乎记得在Drupal 6上有一个核心技巧可以做到这一点,但是我找不到该页面了。 有谁知道我该怎么做?
9 6  updating  proxies 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.