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. $_SERVER['HTTPS']='on';
  22. /** The name of the database for WordPress */
  23. define('DB_NAME', 'wordpress');
  24. /** MySQL database username */
  25. define('DB_USER', 'wpuser');
  26. /** MySQL database password */
  27. define('DB_PASSWORD', 'BharatRocks!');
  28. /** MySQL hostname */
  29. define('DB_HOST', 'localhost');
  30. /** Database Charset to use in creating database tables. */
  31. define('DB_CHARSET', 'utf8mb4');
  32. /** The Database Collate type. Don't change this if in doubt. */
  33. define('DB_COLLATE', '');
  34. /**#@+
  35. * Authentication Unique Keys and Salts.
  36. *
  37. * Change these to different unique phrases!
  38. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  39. * 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.
  40. *
  41. * @since 2.6.0
  42. */
  43. define('AUTH_KEY', 'n|z!iD$y3Z%!|JzkBVXK9 mIk<dC|H)nEc~gxyHJXwZL32-[x0rqS`wMB aJJsB{');
  44. define('SECURE_AUTH_KEY', '-^!H5aqAuiOV0G!vA)=wn2i&;z!fi+wF~qzW)+]{k}8 ~}?`?@tM6,%^QFvOS+M<');
  45. define('LOGGED_IN_KEY', 'A%f<=t5P8a5zY4*be*yPsdMB%C%`oyy`SB)NH=qZS2UIi.S1Tld1BuevX$6?Hx%`');
  46. define('NONCE_KEY', 'DRi%kjLYP8m>B?EZo@GA$TTHTD9#l]S8K0YhD`o>f3K3,ytU-2D*>z/#7Pt//saC');
  47. define('AUTH_SALT', 'o#,m%M>4)h7<?XD1fJdq{pN,lO_uv$ NClRY(:Aa/?*j+$p#-C{ld2WfJ!Vix~FP');
  48. define('SECURE_AUTH_SALT', 'l[]FH+VoUR8!81y o(oOB20{gkll;!PmFpZ{i)7FHmhdc2PY/f2 0y(`qAIWsNn8');
  49. define('LOGGED_IN_SALT', '-2 ){`}eay,XZHGIuNOTkExyDz-R26h`&z!%d0(F(-5kSZ!;c5GqS&)776=`@b9V');
  50. define('NONCE_SALT', 'MS+[m])biri_$Rcsw{AM9uZ_R,=#Kw[&.c`:<+m{s,iCUMYT0B{D8vPETJHo2KF_');
  51. /**#@-*/
  52. /**
  53. * WordPress Database Table prefix.
  54. *
  55. * You can have multiple installations in one database if you give each
  56. * a unique prefix. Only numbers, letters, and underscores please!
  57. */
  58. $table_prefix = 'wp_';
  59. /**
  60. * For developers: WordPress debugging mode.
  61. *
  62. * Change this to true to enable the display of notices during development.
  63. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  64. * in their development environments.
  65. *
  66. * For information on other constants that can be used for debugging,
  67. * visit the Codex.
  68. *
  69. * @link https://codex.wordpress.org/Debugging_in_WordPress
  70. */
  71. define('WP_DEBUG', false);
  72. /* That's all, stop editing! Happy blogging. */
  73. /** Absolute path to the WordPress directory. */
  74. if ( !defined('ABSPATH') )
  75. define('ABSPATH', dirname(__FILE__) . '/');
  76. /** Sets up WordPress vars and included files. */
  77. require_once(ABSPATH . 'wp-settings.php');
  78. define( 'WP_MAX_MEMORY_LIMIT', '512M' );
  79. define( 'WP_MEMORY_LIMIT', '512M' );
  80. set_time_limit(300);