This application enables users to execute maintenance on multiple Zend Servers at ones. It is based on a Zend Framework 2 module structure and a work in progress.
Create a <name>.local.php file in the autoload folder. Include the following structure:
<?php
array(
'servers' => array(
'local' => array(
'name' => '<Your name definition>',
'host' => '<hostname or ip:port>', // no protocol
'user' => '<zend server api name>',
'apikey' => '<zend server api key>',
'cluster' => true, // optional key
),
),
),
);