Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wp-config general

<?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 https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
 * Created using {@link https://generatewp.com/wp-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',         '9?@M:L%@u@^plJickJ%H7R&)*+&J:S-* DGUo^ E?QY<egdOtZ%P!%/*mv;N;6L]~E-pL>{hv1)~yNt.JpBMvd-jq.w');
define('LOGGED_IN_KEY',    '{6=}pIZGf`3^d1T.O)w_u/51K_E%0%j4u4.sd.CA?`QqQRj&-oA5EzdHJ$a;?Zos%!GCy`w-1Y>;CHz(mcj$t@]');
define('AUTH_SALT',        'cG>x!YR_aAG}!Ov_Kf;jd7?Q~WfQGKXm1STn3l06t=)-+Xn79r0X{ |-~,L');
define('NONCE_SALT',       'V3+uoaQ_d5Cbv.c_9sC;.:rh=V1<?^t`fed{1C-QFcF#{,WFR0M:A(@gg3lCrFwB');


/* WordPress Localized Language. */
define( 'WPLANG', '' );


/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '300' );
/* Disable Post Revisions. */
define( 'WP_POST_REVISIONS', false );
/* Media Trash. */
define( 'MEDIA_TRASH', false );


/* WordPress debug mode for developers. */
define( 'WP_DEBUG',         true );
define( 'WP_DEBUG_LOG',     true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SAVEQUERIES',      true );


/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '512' );
define( 'WP_MAX_MEMORY_LIMIT', '1024' );


/* WordPress Cache */
define( 'WP_CACHE', true );


/* Compression */
define( 'COMPRESS_CSS',        true );
define( 'COMPRESS_SCRIPTS',    true );
define( 'ENFORCE_GZIP',        true );


/* Updates */
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'DISALLOW_FILE_MODS', true );


/* 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');