Skip to content

Commit cbf56e7

Browse files
committed
added remote config.
1 parent be57d32 commit cbf56e7

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

app/config/remote.php

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
return array(
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Default Remote Connection Name
8+
|--------------------------------------------------------------------------
9+
|
10+
| Here you may specify the default connection that will be used for SSH
11+
| operations. This name should correspond to a connection name below
12+
| in the server list. Each connection will be manually accessible.
13+
|
14+
*/
15+
16+
'default' => 'production',
17+
18+
/*
19+
|--------------------------------------------------------------------------
20+
| Remote Server Connections
21+
|--------------------------------------------------------------------------
22+
|
23+
| These are the servers that will be accessible via the SSH task runner
24+
| facilities of Laravel. This feature radically simplifies executing
25+
| tasks on your servers, such as deploying out these applications.
26+
|
27+
*/
28+
29+
'connections' => array(
30+
31+
'production' => array(
32+
'host' => '',
33+
'username' => 'root',
34+
'password' => '',
35+
),
36+
37+
),
38+
39+
);

0 commit comments

Comments
 (0)