A Lando.dev service plugin for phpCacheAdmin
- Download the latest version of the plugin (
phpcacheadmin-vX.Y.Z.zip
) - Extract the
phpcacheadmin
folder to the Lando plugins folder (~/.lando/plugins
)
If the
plugins
directory doesn't exist, create it:mkdir -p ~/.lando/plugins
You may configure phpCacheAdmin within your Landofile, by setting a service alongside your cache services.
name: phpcacheadmin-1.x-example
recipe: lamp
config:
webroot: .
services:
cache1:
type: redis
cache2:
type: memcached
phpcacheadmin:
type: phpcacheadmin:1
hosts:
- type: redis
host: cache1
- type: memcached
host: cache2
Supported configurations options per host are:
name
: The server name for an info panel, useful when you have multiple servers added (Optional, default name is Localhost)host
: Memcached server hostport
: Memcached server port (Optional, default is 11211)
name
: The server name for an info panel, useful when you have multiple servers added (Optional, default name is Localhost)host
: Redis server hostport
: Redis server port (Optional, default is 6379)database
: Redis database (Optional, default is 0)password
: Redis database (Optional, empty by default)