Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wp-config.php

<?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/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',         'r-D8~WlYUzgxx}tHTTe*pH=]H.*K /S4_+=uk&SK*(;Kge :-Se:YcG,.]Af7{13HiJ-||7T7G+`l}ok9ImBp~u/qPK3uxN');
define('LOGGED_IN_KEY',    'i1M55d}|#E)CL9r  al/3x*TGm{ ?[r&LAwzunf-iih-]dFvaf8WHyNM-`sEn]{%');
define('NONCE_KEY',        '{:t-@-wkh;+4FWeVJKeHN)xAf&2CT#@%9X=@Vpc8O5]^S%:S+F;lvd6o[$.]Gdfw');
define('AUTH_SALT',        ',k*IO`,q&2^~?.Xs:cnZ)H%Z|c^dJw|+{~;uZ(-SC][0%Kv%Z!VBfAJqJNdzn>S?');
define('SECURE_AUTH_SALT', 'T`3e6Eff4|4;PU7,`-1(=f ,P{1)IlY V>o(q+;+Phd,J*+P/z6<: l6yvXPnAW:');
define('LOGGED_IN_SALT',   '9rTZ@}U`5bJ*nmev3*,?yN,f/T_j1Raf;,cyMT=>({T/Qqsdpa)q%v#c_K)n:&');
define('NONCE_SALT',       '_6,CA+CgF4qsUr tEpgommp2fS3gsAN(6Q,*?(.,%&_h)OC#&KR@o**4yxQ|3YYW');


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


/* 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', true );
define( 'ENFORCE_GZIP',        true );


/* CRON */
define( 'DISABLE_WP_CRON',      'true' );


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