From a6f8775567bb013993b6175695a9d667db77abf8 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 12 Jan 2015 13:02:54 +0000 Subject: [PATCH] Remove unused configuration file --- app/config/remote.php | 59 ------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 app/config/remote.php diff --git a/app/config/remote.php b/app/config/remote.php deleted file mode 100644 index 9e6cc270..00000000 --- a/app/config/remote.php +++ /dev/null @@ -1,59 +0,0 @@ - 'production', - - /* - |-------------------------------------------------------------------------- - | Remote Server Connections - |-------------------------------------------------------------------------- - | - | These are the servers that will be accessible via the SSH task runner - | facilities of Laravel. This feature radically simplifies executing - | tasks on your servers, such as deploying out these applications. - | - */ - - 'connections' => [ - - 'production' => [ - 'host' => '', - 'username' => '', - 'password' => '', - 'key' => '', - 'keyphrase' => '', - 'root' => '/var/www', - ], - - ], - - /* - |-------------------------------------------------------------------------- - | 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' => [ - - 'web' => ['production'], - - ], - -];