Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wp-config-default

<?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',         'inrJrgm^L-tQ~q&-G.UC[w)q5lDCYp)P4EgnZrr:IiHqW5jhf&%Z=7TG$7}Vhc;Q');
define('SECURE_AUTH_KEY',  'yfSXLuN5-T{=hZ8vXg1L1jY46)0`,pk-#n-RS+AC?&+zda-E~!uwaVvHA~]E.!(BK=TTarjonI0=4ErSlmi8g!bI');
define('NONCE_KEY',        '~$@+g#J[Ijy+w-!;=-S]>VE+hndk0Uoq;/o)YD}B9*hz9S)C[6-t>;L4ICP)6|-I');
define('AUTH_SALT',        'r_DEpP=h|}Hd2YR^5%m{PjdfV;3uN`d]6wCyjH si#{5zgBrMXSlm0kd%?D+W$+`');
define('SECURE_AUTH_SALT', '.-p$HaM!&uaBN`:a7EmhAf=^.#r>iwP>riZs8W`;-`q2%@FRgRDdeuNYs &en^=w');
define('LOGGED_IN_SALT',   '$Mb^*`y@FL)B.%?I#=$[81XBlXoUsB&W19t$=&:<2C1`4Igl(-4|xP^@l+[#^BR7');
define('NONCE_SALT',       'j|WzW+<xmiv1mT$@iBAKs]OE-UG7_,T[m#`$7.o1E~^e)JuFh,ri2|G|YgO&a0)H');


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


/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '300' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '2' );
/* Media Trash. */
define( 'MEDIA_TRASH', false );


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


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


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


/* Updates */
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'DISALLOW_FILE_MODS', true );
define( 'DISALLOW_FILE_EDIT', 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');