Browse Source

Tweaking configuration files.

Taylor Otwell 11 years ago
parent
commit
07e5cc10d9
2 changed files with 4 additions and 1 deletions
  1. 2 0
      app/config/app.php
  2. 2 1
      app/config/remote.php

+ 2 - 0
app/config/app.php

@@ -103,6 +103,7 @@ return array(
 		'Illuminate\Foundation\Providers\PublisherServiceProvider',
 		'Illuminate\Queue\QueueServiceProvider',
 		'Illuminate\Redis\RedisServiceProvider',
+		'Illuminate\Remote\RemoteServiceProvider',
 		'Illuminate\Auth\Reminders\ReminderServiceProvider',
 		'Illuminate\Foundation\Providers\RouteListServiceProvider',
 		'Illuminate\Database\SeedServiceProvider',
@@ -174,6 +175,7 @@ return array(
 		'Schema'          => 'Illuminate\Support\Facades\Schema',
 		'Seeder'          => 'Illuminate\Database\Seeder',
 		'Session'         => 'Illuminate\Support\Facades\Session',
+		'SSH'             => 'Illuminate\Support\Facades\SSH',
 		'Str'             => 'Illuminate\Support\Str',
 		'URL'             => 'Illuminate\Support\Facades\URL',
 		'Validator'       => 'Illuminate\Support\Facades\Validator',

+ 2 - 1
app/config/remote.php

@@ -30,8 +30,9 @@ return array(
 
 		'production' => array(
 			'host'     => '',
-			'username' => 'root',
+			'username' => '',
 			'password' => '',
+			'key'      => '',
 		),
 
 	),