Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wp-config

Default WP configuration file

<?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 http://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
 *
 * @package WordPress
 * @generator GenerateWP.com
 */


/* MySQL settings */
define( 'DB_NAME',     'stillcaptive' );
define( 'DB_USER',     'root' );
define( 'DB_PASSWORD', 'root' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8mb4' );


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


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'yO,-LIsM|Kx~MQ&6grPaf%-iTtX6M/Qn T2q89-} YcSd|(RLTa4a| g/=h(,<$y');
define('SECURE_AUTH_KEY',  'N:tm=^PZI:QGe3b~?o|z4#MaM=a2uV$w*I09+ 2F!Mm@cuOaC+cpd@1ApLV;s? {ZC=9UQ-Z+PL!DJj`2E$-|~APZ ');
define('NONCE_KEY',        '<DmoKVTfCr1F-jvGLWf6~k7?L`H&T:R');
define('AUTH_SALT',        'f8C^(kZv-p5AAOggj[zm0');
define('SECURE_AUTH_SALT', 'M:@U1H1($zv8_)k^-J7YmwLRL3c:{TBy_{dI*xq');
define('NONCE_SALT',       'fSQH91=c:5MMM_lLG|@0/4UjWW[c|CN|uU42}l6?h>1^|ZS;|~xbE``Fc#XF%-?|');


/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );


/* Custom WordPress URL. */
define( 'WP_SITEURL',     'www.still-captivating.dev.cc' );
define( 'WP_CONTENT_URL', 'www.still-captivating.dev.cc/wp-content' );
define( 'UPLOADS',        'www.still-captivating.dev.cc/wp-content/uploads' );
define( 'WP_PLUGIN_URL',  'www.still-captivating.dev.cc/wp-content/plugins' );


/* Media Trash. */
define( 'MEDIA_TRASH', true );


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


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