ftp.php 680 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * Part of the Fuel framework.
  4. *
  5. * @package Fuel
  6. * @version 1.5
  7. * @author Fuel Development Team
  8. * @license MIT License
  9. * @copyright 2010 - 2013 Fuel Development Team
  10. * @link http://fuelphp.com
  11. */
  12. /**
  13. * NOTICE:
  14. *
  15. * If you need to make modifications to the default configuration, copy
  16. * this file to your app/config folder, and make them in there.
  17. *
  18. * This will allow you to upgrade fuel without losing your custom config.
  19. */
  20. return array(
  21. 'default' => array(
  22. 'hostname' => 'localhost',
  23. 'username' => '',
  24. 'password' => '',
  25. 'port' => 21,
  26. 'passive' => true,
  27. 'ssl_mode' => false,
  28. 'debug' => false
  29. )
  30. );