wp-config.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. // ** MySQL settings - You can get this info from your web host ** //
  21. /** The name of the database for WordPress */
  22. define('DB_NAME', 'wordpress');
  23. /** MySQL database username */
  24. define('DB_USER', 'wpuser');
  25. /** MySQL database password */
  26. define('DB_PASSWORD', 'BharatRocks!');
  27. /** MySQL hostname */
  28. define('DB_HOST', 'localhost');
  29. /** Database Charset to use in creating database tables. */
  30. define('DB_CHARSET', 'utf8mb4');
  31. /** The Database Collate type. Don't change this if in doubt. */
  32. define('DB_COLLATE', '');
  33. /**#@+
  34. * Authentication Unique Keys and Salts.
  35. *
  36. * Change these to different unique phrases!
  37. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  38. * 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.
  39. *
  40. * @since 2.6.0
  41. */
  42. define('AUTH_KEY', 'gPa.YUF^KR4s9l8[4STak=2^t8{O7(+SajC/R3EV61lD[9b 1;)*+m=.PyP,%uvE');
  43. define('SECURE_AUTH_KEY', '|Xtfu^tARZKvJTm)X^#<qsL[X@D3!Q.?yT,Dp+,W-iaOa{0b051~/N,2+.7-xEuf');
  44. define('LOGGED_IN_KEY', ']=#`MqCL[5&< EeN 7*w7=xH`HgiF.6sR$;+G1=*Cj#qY1cl-MgjQ.gb;X4/S+^g');
  45. define('NONCE_KEY', ' S %KcsNt6s3O=m=d|fK(*pS|P~`K9i**1C?R_vo3EJHzrSQ%C6U$y:)I<1|M^Uz');
  46. define('AUTH_SALT', 'Aq!sDm:pvnR)_G,l%IGglV<)%.EJwP>-:3N*%`4g(RRiMvNG0cj3vw2+Y`uKG.58');
  47. define('SECURE_AUTH_SALT', 'Sl/_=kiH_P08S@~GY~xc/&P]b.t:8OzR65?uVYBs)0a(LiI-M{0O`5LV<8NCQkQH');
  48. define('LOGGED_IN_SALT', '4o.m4abU@$[zp@|/=-pU>zqqdDv&LN}SdcIeGIE1Gp3Y,b0xY~1H29Qr<`WZ[%V@');
  49. define('NONCE_SALT', '$}F-%Sy~>3LhHNw#W<C>5sxga0LWu3koa$tp{l-JYs6:4JA) CqP3r#$l[n&m)0M');
  50. /**#@-*/
  51. /**
  52. * WordPress Database Table prefix.
  53. *
  54. * You can have multiple installations in one database if you give each
  55. * a unique prefix. Only numbers, letters, and underscores please!
  56. */
  57. $table_prefix = 'wp_';
  58. /**
  59. * For developers: WordPress debugging mode.
  60. *
  61. * Change this to true to enable the display of notices during development.
  62. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  63. * in their development environments.
  64. *
  65. * For information on other constants that can be used for debugging,
  66. * visit the Codex.
  67. *
  68. * @link https://codex.wordpress.org/Debugging_in_WordPress
  69. */
  70. define('WP_DEBUG', false);
  71. /* That's all, stop editing! Happy blogging. */
  72. define('FS_METHOD', 'direct');
  73. /** Absolute path to the WordPress directory. */
  74. if ( !defined('ABSPATH') )
  75. define('ABSPATH', dirname(__FILE__) . '/');
  76. define('FORCE_SSL_ADMIN', true);
  77. define('FORCE_SSL_LOGIN', true);
  78. if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')
  79. $_SERVER['HTTPS']='on';
  80. /** Sets up WordPress vars and included files. */
  81. require_once(ABSPATH . 'wp-settings.php');