我们如何使用Lando来支持Varnish,我使用的是默认的.lando.yml文件
name: d8
recipe: drupal8
config:
php: '7.2'
webroot: web发布于 2019-02-23 17:03:16
您可以使用service添加lando提供的任何其他支持:
name: d8
recipe: drupal 8
config:
php: 7.2
webroot: web
services:
varnishcache:
type: varnish:4.1
backends:
- appserver
backend_port: 80
ssl: false
config:
vcl: config/custom.vclhttps://stackoverflow.com/questions/51184989
复制相似问题