remote.php 1005 B

123456789101112131415161718192021222324252627282930313233343536373839
  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' => 'root',
  28. 'password' => '',
  29. ),
  30. ),
  31. );