From 84cc247f982bd62195575026ebd8b33aaed45af4 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 14 Jun 2013 00:36:13 -0500 Subject: [PATCH] Add groups configuration option to remote config. --- app/config/remote.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/config/remote.php b/app/config/remote.php index d4508804..29296f3b 100644 --- a/app/config/remote.php +++ b/app/config/remote.php @@ -37,4 +37,21 @@ ), + /* + |-------------------------------------------------------------------------- + | Remote Server Groups + |-------------------------------------------------------------------------- + | + | Here you may list connections under a single group name, which allows + | you to easily access all of the servers at once using a short name + | that is extremely easy to remember, such as "web" or "database". + | + */ + + 'groups' => array( + + 'web' => array('production') + + ), + ); \ No newline at end of file