wp-config
<?php
/**
* Custom WordPress configurations on "wp-config.php" file.
*
* This file has the following configurations: MySQL settings, Table Prefix, Secret Keys, WordPress Language, ABSPATH and more.
* For more information visit {@link http://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
* Created using {@link https://generatewp.com-config/ wp-config.php File Generator} on GenerateWP.com.
*
* @package WordPress
* @generator GenerateWP.com
*/
/* MySQL settings */
define( 'DB_NAME', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', ' nqoL:GvFEQ_@|A!,X?-/.%lJpXLNZrhy?N$?+3ZiUI$b2f.H*V]&D~(!_&YX]s?');
define('SECURE_AUTH_KEY', 'zz`[iSc>N-3xuAk!v6qi7zeU>[i[Z]|2&uhNj|/:nPq[NHf0H435GtcO S*lwuAp');
define('LOGGED_IN_KEY', '{k*J?wK4peewy]Ns]+BO:H|]I6.g%-Hu^Q[KG22pA)I !4oDMzD,^~:!LcLE2|&5');
define('NONCE_KEY', 'x)+-umZ.Jfx>n7p^n=@OZUVt0BnUUK1NOt!nG8;$$r_!]h/HM|8f_)`StpLWW2+Z');
define('AUTH_SALT', '.8nH1z=?=LCN;8gVxwv@2_lHz}+%.o+jB~c-^H|f-^|hL-{KMz*,bwi(ZcM;YS+d');
define('SECURE_AUTH_SALT', 'h7QpDT=|(N!Y4224--EZm#flxv=ycO>xM=tyMIT03/;|2Yxrx6f}BlznwisAg,0Y');
define('LOGGED_IN_SALT', 'a-C]Q80 W]b>+S-Vt}1!y&M7l6e_)-vv>v0+.:zF)9Osem)-T&jz$r;rKx*SBrz/');
define('NONCE_SALT', 'WmO?*AofnSgKXwEcIGrV9WHD2_b/jyq+/0]OXxO%ICAD+[OV[E. f/Z}jV9 iQ6j');
/* WordPress Localized Language. */
define( 'WPLANG', '' );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '64M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
/* WordPress Cache */
define( 'WP_CACHE', true );
/* Compression */
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', false );
define( 'ENFORCE_GZIP', true );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', false );
/* 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');