Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  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.  
  21. /** Name of MySQL Database */
  22. define( 'DB_NAME', getenv('DB_NAME') );
  23.  
  24. /** Username of MySQL Database */
  25. define( 'DB_USER', getenv('DB_USER') );
  26.  
  27. /** Password of MySQL Database */
  28. define( 'DB_PASSWORD', getenv('DB_PASS') );
  29.  
  30. /** Hostname MySQL */
  31. define( 'DB_HOST', getenv('DB_HOST').':'.getenv('DB_PORT') );
  32.  
  33. /** Database Charset to use in creating database tables. */
  34. define('DB_CHARSET', 'utf8mb4');
  35.  
  36. /** The Database Collate type. Don't change this if in doubt. */
  37. define('DB_COLLATE', '');
  38.  
  39. /**#@+
  40. * Authentication Unique Keys and Salts.
  41. *
  42. * Change these to different unique phrases!
  43. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  44. * 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.
  45. *
  46. * @since 2.6.0
  47. */
  48. define('AUTH_KEY', 'enBt>!/Ps-/oq66<HR$s6H):6C)in8lZs (]qzkNrNC,1wy97cC<Ep-Kf#x^=d,~');
  49. define('SECURE_AUTH_KEY', 'u97xU|bWvv?o&PfEsOvp!n>~ay^U=XkoN@I4M3Pg8dHcoKN_~3ueG{^|?c0w8Q7^');
  50. define('LOGGED_IN_KEY', 'e-4PDeKJsz3Cm/q,7o-Rf{{<My.#0&1`<?J5^I^45u(^[fq$j:E{#4132QUAl]V6');
  51. define('NONCE_KEY', ',bXLfmh.;U|5YZfs$#)|8iqp21.pdc<(b-ua3X^7a*osZ1eWO^<qAW+{w+Fv_*i9');
  52. define('AUTH_SALT', 'E*@/sS(qp?J$T9.76*j]azv>)1]k{4y9=x(PD-DTOw=DC.HJX|!Dq3[`]r&N:61q');
  53. define('SECURE_AUTH_SALT', 'Td*SZt,64stM+M8fCF_X-3I.:/Lme]^:n5c0=v{5N{Ys(y|)JjL36zLF Xd{]VtD');
  54. define('LOGGED_IN_SALT', ']ymI|g .T22Xa/%.>kfnsD8?EE{u0n(I(s5ii4)$.!u)[4bg&>CJdo(L?hkY}I-v');
  55. define('NONCE_SALT', '&u33#JU(GaWjU}&yTr_N7~o*LMZ}o&wzb/+m4d_Pej}V-qQkZ1DKBr0+6+RCMnJ2');
  56.  
  57. /**#@-*/
  58.  
  59. /**
  60. * WordPress Database Table prefix.
  61. *
  62. * You can have multiple installations in one database if you give each
  63. * a unique prefix. Only numbers, letters, and underscores please!
  64. */
  65. $table_prefix = 'wp_';
  66.  
  67. /**
  68. * For developers: WordPress debugging mode.
  69. *
  70. * Change this to true to enable the display of notices during development.
  71. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  72. * in their development environments.
  73. *
  74. * For information on other constants that can be used for debugging,
  75. * visit the Codex.
  76. *
  77. * @link https://codex.wordpress.org/Debugging_in_WordPress
  78. */
  79. define( 'WP_DEBUG', false );
  80.  
  81. if ( isset($_SERVER['HTTP_X_FORWARDED_PROTO'] )
  82. && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' )
  83. {
  84. $_SERVER['HTTPS'] = 'on';
  85. }
  86.  
  87. /* That's all, stop editing! Happy blogging. */
  88.  
  89. /** Absolute path to the WordPress directory. */
  90. if ( !defined('ABSPATH') )
  91. define('ABSPATH', dirname(__FILE__) . '/');
  92.  
  93. /** Sets up WordPress vars and included files. */
  94. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement