remote.php 1.5 KB

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