Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. return array(
  2. '*' => array(
  3. 'tablePrefix' => 'craft'
  4. ),
  5. '000.00.000.00' => array(
  6. 'server' => 'localhost',
  7. 'user' => 'craftcms',
  8. 'password' => '************',
  9. 'database' => 'craft'
  10. ),
  11. 'localhost' => array(
  12. 'server' => 'localhost',
  13. 'user' => 'root',
  14. 'password' => '************',
  15. 'database' => 'craftdev'
  16. ),
  17. );
  18.  
  19. return array(
  20. '*' => array(
  21. //'siteUrl' => "//projectname:8888/html/",
  22. 'environmentVariables' => array(
  23. 'basePath' => '/users/toddpadwick/Sites/projectname/html/',
  24. 'siteUrl' => '//projectname:8888/html/',
  25. ),
  26. 'testToEmailAddress' => 'email@email.com',
  27. // Default Week Start Day (0 = Sunday, 1 = Monday...)
  28. 'defaultWeekStartDay' => 0,
  29. // Enable CSRF Protection (recommended, will be enabled by default in Craft 3)
  30. 'enableCsrfProtection' => true,
  31. // Whether "index.php" should be visible in URLs (true, false, "auto")
  32. 'omitScriptNameInUrls' => 'auto',
  33. // Control Panel trigger word
  34. 'cpTrigger' => 'admin',
  35. // Dev Mode (see https://craftcms.com/support/dev-mode)
  36. 'devMode' => true,
  37. ),
  38. // Use IP address of your droplet below
  39. '000.00.000.00' => array(
  40.  
  41. //'siteUrl' => 'http://000.00.000.00/',
  42.  
  43. 'environmentVariables' => array(
  44. 'basePath' => '/var/www/html/',
  45. 'siteUrl' => 'http://000.00.000.00/',
  46. ),
  47. // Default Week Start Day (0 = Sunday, 1 = Monday...)
  48. 'defaultWeekStartDay' => 0,
  49. // Enable CSRF Protection (recommended, will be enabled by default in Craft 3)
  50. 'enableCsrfProtection' => true,
  51. // Whether "index.php" should be visible in URLs (true, false, "auto")
  52. 'omitScriptNameInUrls' => 'auto',
  53. // Control Panel trigger word
  54. 'cpTrigger' => 'admin',
  55. // Dev Mode (see https://craftcms.com/support/dev-mode)
  56. 'devMode' => false,
  57. )
  58. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement