Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <?php
  2. $aliases['production'] = array (
  3. 'root' => '/var/www/cust',
  4. 'uri' => 'www.example.com',
  5. 'databases' => array(
  6. 'default' => array(
  7. 'default' => array(
  8. 'database' => '...',
  9. 'username' => '...',
  10. 'password' => '...',
  11. 'host' => '...',
  12. 'port' => '3306',
  13. 'driver' => 'mysql',
  14. ),
  15. ),
  16. ),
  17. 'site-list' => array(
  18. 'production.1',
  19. 'production.2',
  20. 'production.3',
  21. 'production.4',
  22. ),
  23. );
  24. $aliases['production.1'] = array (
  25. 'parent' => '@production',
  26. 'remote-host' => '...',
  27. 'site-list' => array(),
  28. );
  29. $aliases['production.2'] = array (
  30. 'parent' => '@production',
  31. 'remote-host' => '...',
  32. );
  33. $aliases['production.3'] = array (
  34. 'parent' => '@production',
  35. 'remote-host' => '...',
  36. );
  37. $aliases['production.4'] = array (
  38. 'parent' => '@production',
  39. 'remote-host' => '...',
  40. );
  41. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement