File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
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
+ );
You can’t perform that action at this time.
0 commit comments