Craft Video Dictionary https://www.craftvideodictionary.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. /**
  3. * The base configuration for WordPress
  4. *
  5. * The wp-config.php creation script uses this file during the
  6. * installation. You don't have to use the web site, you can
  7. * copy this file to "wp-config.php" and fill in the values.
  8. *
  9. * This file contains the following configurations:
  10. *
  11. * * MySQL settings
  12. * * Secret keys
  13. * * Database table prefix
  14. * * ABSPATH
  15. *
  16. * @link https://codex.wordpress.org/Editing_wp-config.php
  17. *
  18. * @package WordPress
  19. */
  20. // Get custom environmental variables
  21. define('DB_PASSWORD', getenv('WORDPRESS_DB_PASSWORD'));
  22. define('DB_USER', getenv('WORDPRESS_DB_USER'));
  23. // ** MySQL settings - You can get this info from your web host ** //
  24. /** The name of the database for WordPress */
  25. define('DB_NAME', getenv('WORDPRESS_DB_NAME'));
  26. /** MySQL hostname */
  27. define('DB_HOST', 'mysql');
  28. /** Database Charset to use in creating database tables. */
  29. define('DB_CHARSET', 'utf8');
  30. /** The Database Collate type. Don't change this if in doubt. */
  31. define('DB_COLLATE', '');
  32. /**#@+
  33. * Authentication Unique Keys and Salts.
  34. *
  35. * Change these to different unique phrases!
  36. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  37. * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
  38. *
  39. * @since 2.6.0
  40. */
  41. define('AUTH_KEY', '5c79fa8455ac3a9d073b092f0d037bd59d76b47d');
  42. define('SECURE_AUTH_KEY', '08bb369f951155190f734de6604e2e73d2ab4a5a');
  43. define('LOGGED_IN_KEY', '7df12c7b77e5103dc495d065aba00d4ae92fcc6b');
  44. define('NONCE_KEY', '55f0ec0d7a25dbe325ff9acbbf58fa5bb96aec3e');
  45. define('AUTH_SALT', '5ff82df7f4a75524c25f17eaa7d1d0ed6b728824');
  46. define('SECURE_AUTH_SALT', '74696d119a7aa7b177f0e0123e5248b0c95621cf');
  47. define('LOGGED_IN_SALT', '572abf75e1d94e3d715f5f7d3afb8fad96512cd8');
  48. define('NONCE_SALT', '409a7ac7260e68334bfe5a19b4454e28aad34e73');
  49. /**#@-*/
  50. /**
  51. * WordPress Database Table prefix.
  52. *
  53. * You can have multiple installations in one database if you give each
  54. * a unique prefix. Only numbers, letters, and underscores please!
  55. */
  56. $table_prefix = 'wp_';
  57. /**
  58. * For developers: WordPress debugging mode.
  59. *
  60. * Change this to true to enable the display of notices during development.
  61. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  62. * in their development environments.
  63. *
  64. * For information on other constants that can be used for debugging,
  65. * visit the Codex.
  66. *
  67. * @link https://codex.wordpress.org/Debugging_in_WordPress
  68. */
  69. define('WP_DEBUG', false);
  70. // If we're behind a proxy server and using HTTPS, we need to alert Wordpress of that fact
  71. // see also http://codex.wordpress.org/Administration_Over_SSL#Using_a_Reverse_Proxy
  72. if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
  73. $_SERVER['HTTPS'] = 'on';
  74. }
  75. /* That's all, stop editing! Happy blogging. */
  76. /** Absolute path to the WordPress directory. */
  77. if ( !defined('ABSPATH') )
  78. define('ABSPATH', dirname(__FILE__) . '/');
  79. /** Sets up WordPress vars and included files. */
  80. require_once(ABSPATH . 'wp-settings.php');
  81. define('IS_DEV', getenv('IS_DEV'));
  82. /** DEV */
  83. if(defined('IS_DEV') && IS_DEV === 'true') {
  84. $_SERVER['HTTPS'] = 'off';
  85. } else {
  86. $_SERVER['HTTPS'] = 'off';
  87. }
  88. /** Limit reivisions */
  89. define('WP_POST_REVISIONS', 2);