remote.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. return array(
  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' => array(
  25. 'production' => array(
  26. 'host' => '',
  27. 'username' => '',
  28. 'password' => '',
  29. 'key' => '',
  30. ),
  31. ),
  32. /*
  33. |--------------------------------------------------------------------------
  34. | Remote Server Groups
  35. |--------------------------------------------------------------------------
  36. |
  37. | Here you may list connections under a single group name, which allows
  38. | you to easily access all of the servers at once using a short name
  39. | that is extremely easy to remember, such as "web" or "database".
  40. |
  41. */
  42. 'groups' => array(
  43. 'web' => array('production')
  44. ),
  45. );