remote.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. 'keyphrase' => '',
  31. 'root' => '/var/www',
  32. ),
  33. ),
  34. /*
  35. |--------------------------------------------------------------------------
  36. | Remote Server Groups
  37. |--------------------------------------------------------------------------
  38. |
  39. | Here you may list connections under a single group name, which allows
  40. | you to easily access all of the servers at once using a short name
  41. | that is extremely easy to remember, such as "web" or "database".
  42. |
  43. */
  44. 'groups' => array(
  45. 'web' => array('production')
  46. ),
  47. );