| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * The base configuration for WordPress
- *
- * The wp-config.php creation script uses this file during the
- * installation. You don't have to use the web site, you can
- * copy this file to "wp-config.php" and fill in the values.
- *
- * This file contains the following configurations:
- *
- * * MySQL settings
- * * Secret keys
- * * Database table prefix
- * * ABSPATH
- *
- * @link https://codex.wordpress.org/Editing_wp-config.php
- *
- * @package WordPress
- */
- // ** MySQL settings - You can get this info from your web host ** //
- $_SERVER['HTTPS']='on';
- /** The name of the database for WordPress */
- define('DB_NAME', 'wordpress');
- /** MySQL database username */
- define('DB_USER', 'wpuser');
- /** MySQL database password */
- define('DB_PASSWORD', 'BharatRocks!');
- /** MySQL hostname */
- define('DB_HOST', 'localhost');
- /** Database Charset to use in creating database tables. */
- define('DB_CHARSET', 'utf8mb4');
- /** The Database Collate type. Don't change this if in doubt. */
- define('DB_COLLATE', '');
- /**#@+
- * Authentication Unique Keys and Salts.
- *
- * Change these to different unique phrases!
- * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
- * 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.
- *
- * @since 2.6.0
- */
- define('AUTH_KEY', 'n|z!iD$y3Z%!|JzkBVXK9 mIk<dC|H)nEc~gxyHJXwZL32-[x0rqS`wMB aJJsB{');
- define('SECURE_AUTH_KEY', '-^!H5aqAuiOV0G!vA)=wn2i&;z!fi+wF~qzW)+]{k}8 ~}?`?@tM6,%^QFvOS+M<');
- define('LOGGED_IN_KEY', 'A%f<=t5P8a5zY4*be*yPsdMB%C%`oyy`SB)NH=qZS2UIi.S1Tld1BuevX$6?Hx%`');
- define('NONCE_KEY', 'DRi%kjLYP8m>B?EZo@GA$TTHTD9#l]S8K0YhD`o>f3K3,ytU-2D*>z/#7Pt//saC');
- define('AUTH_SALT', 'o#,m%M>4)h7<?XD1fJdq{pN,lO_uv$ NClRY(:Aa/?*j+$p#-C{ld2WfJ!Vix~FP');
- define('SECURE_AUTH_SALT', 'l[]FH+VoUR8!81y o(oOB20{gkll;!PmFpZ{i)7FHmhdc2PY/f2 0y(`qAIWsNn8');
- define('LOGGED_IN_SALT', '-2 ){`}eay,XZHGIuNOTkExyDz-R26h`&z!%d0(F(-5kSZ!;c5GqS&)776=`@b9V');
- define('NONCE_SALT', 'MS+[m])biri_$Rcsw{AM9uZ_R,=#Kw[&.c`:<+m{s,iCUMYT0B{D8vPETJHo2KF_');
- /**#@-*/
- /**
- * WordPress Database Table prefix.
- *
- * You can have multiple installations in one database if you give each
- * a unique prefix. Only numbers, letters, and underscores please!
- */
- $table_prefix = 'wp_';
- /**
- * For developers: WordPress debugging mode.
- *
- * Change this to true to enable the display of notices during development.
- * It is strongly recommended that plugin and theme developers use WP_DEBUG
- * in their development environments.
- *
- * For information on other constants that can be used for debugging,
- * visit the Codex.
- *
- * @link https://codex.wordpress.org/Debugging_in_WordPress
- */
- define('WP_DEBUG', false);
- /* That's all, stop editing! Happy blogging. */
- /** Absolute path to the WordPress directory. */
- if ( !defined('ABSPATH') )
- define('ABSPATH', dirname(__FILE__) . '/');
- /** Sets up WordPress vars and included files. */
- require_once(ABSPATH . 'wp-settings.php');
- define( 'WP_MAX_MEMORY_LIMIT', '512M' );
- define( 'WP_MEMORY_LIMIT', '512M' );
- set_time_limit(300);
|