Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

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 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',  'utf8mb4' );


/* MySQL database table prefix. */
$table_prefix = 'wp_';


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'ADY)cN5f+(Sl1(Gx[23vN9DNwq;%LwK`$+)M|-3fos{39W)|Do|uRwK lc-eLKN6');
define('SECURE_AUTH_KEY',  '?uLcNUz7{+kgm.lK=z^oYq59)`d*-M *>KVqo:-sMeLeSxIR~yM[YL41_3+)ydh@');
define('LOGGED_IN_KEY',    '-^zl%ZMA]gop G+{/@7zo!]TqMHnGZH]{XX;[?}jVT*ITO(D[o7Q4HJ.L|bvm');
define('NONCE_KEY',        '17;g.N|>axEZ&U`8}3u{k6VW!>mCklIYFY] }((7wR[6#(6rTEW5W,');
define('AUTH_SALT',        '^{5c[k-j*MT-r.Y;?EJLq0toFT-tZf:1$A2  <%z+*VagCRMW9_6(O=B5-Q(6`7[');
define('SECURE_AUTH_SALT', '6E_2%8=-Y?_o7GuQDgK<ecGGw/oZ8`.@655^x`f~{eG4H=JR&a;mH_4]^[c$oTpP');
define('LOGGED_IN_SALT',   'oc?^veHSIj;~,}Jb[:f5,4viwC;FIU}1HTw0q^&6K|xL9`yNILyQ_I(8jWIIIURn');
define('NONCE_SALT',       'PT4H}|A-{Q_#o5_qjV{W@x8$-M&xs7V}|oswzE');


/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '120' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '1' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '1' );


/* Multisite. */
define( 'WP_ALLOW_MULTISITE', true );


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


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


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


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