|
1 | 1 | <?php
|
2 |
| - return [ |
3 |
| - /* |
4 |
| - |-------------------------------------------------------------------------- |
5 |
| - | Default Remote Connection Name |
6 |
| - |-------------------------------------------------------------------------- |
7 |
| - | |
8 |
| - | Here you may specify the default connection that will be used for SSH |
9 |
| - | operations. This name should correspond to a connection name below |
10 |
| - | in the server list. Each connection will be manually accessible. |
11 |
| - | |
12 |
| - */ |
13 |
| - 'default' => 'production', |
14 |
| - /* |
15 |
| - |-------------------------------------------------------------------------- |
16 |
| - | Remote Server Connections |
17 |
| - |-------------------------------------------------------------------------- |
18 |
| - | |
19 |
| - | These are the servers that will be accessible via the SSH task runner |
20 |
| - | facilities of Laravel. This feature radically simplifies executing |
21 |
| - | tasks on your servers, such as deploying out these applications. |
22 |
| - | |
23 |
| - */ |
24 |
| - 'connections' => [ |
25 |
| - 'production' => [ |
26 |
| - 'host' => '', |
27 |
| - 'username' => '', |
28 |
| - 'password' => '', |
29 |
| - 'key' => '', |
30 |
| - 'keytext' => '', |
31 |
| - 'keyphrase' => '', |
32 |
| - 'agent' => '', |
33 |
| - ], |
34 |
| - ], |
35 |
| - /* |
36 |
| - |-------------------------------------------------------------------------- |
37 |
| - | Remote Server Groups |
38 |
| - |-------------------------------------------------------------------------- |
39 |
| - | |
40 |
| - | Here you may list connections under a single group name, which allows |
41 |
| - | you to easily access all of the servers at once using a short name |
42 |
| - | that is extremely easy to remember, such as "web" or "database". |
43 |
| - | |
44 |
| - */ |
45 |
| - 'groups' => [ |
46 |
| - 'web' => [ 'production' ] |
47 |
| - ], |
48 |
| - ]; |
| 2 | + |
| 3 | + return [ |
| 4 | + /* |
| 5 | + |-------------------------------------------------------------------------- |
| 6 | + | Default Remote Connection Name |
| 7 | + |-------------------------------------------------------------------------- |
| 8 | + | |
| 9 | + | Here you may specify the default connection that will be used for SSH |
| 10 | + | operations. This name should correspond to a connection name below |
| 11 | + | in the server list. Each connection will be manually accessible. |
| 12 | + | |
| 13 | + */ |
| 14 | + 'default' => 'production', |
| 15 | + /* |
| 16 | + |-------------------------------------------------------------------------- |
| 17 | + | Remote Server Connections |
| 18 | + |-------------------------------------------------------------------------- |
| 19 | + | |
| 20 | + | These are the servers that will be accessible via the SSH task runner |
| 21 | + | facilities of Laravel. This feature radically simplifies executing |
| 22 | + | tasks on your servers, such as deploying out these applications. |
| 23 | + | |
| 24 | + */ |
| 25 | + 'connections' => [ |
| 26 | + 'production' => [ |
| 27 | + 'host' => '', |
| 28 | + 'username' => '', |
| 29 | + 'password' => '', |
| 30 | + 'key' => '', |
| 31 | + 'keytext' => '', |
| 32 | + 'keyphrase' => '', |
| 33 | + 'agent' => '', |
| 34 | + ], |
| 35 | + ], |
| 36 | + /* |
| 37 | + |-------------------------------------------------------------------------- |
| 38 | + | Remote Server Groups |
| 39 | + |-------------------------------------------------------------------------- |
| 40 | + | |
| 41 | + | Here you may list connections under a single group name, which allows |
| 42 | + | you to easily access all of the servers at once using a short name |
| 43 | + | that is extremely easy to remember, such as "web" or "database". |
| 44 | + | |
| 45 | + */ |
| 46 | + 'groups' => [ |
| 47 | + 'web' => ['production'], |
| 48 | + ], |
| 49 | + ]; |
0 commit comments