Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Def 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 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',         '|9,,,MF@#w!p&-M:HQuRbT4|]/+z:>bbO6#sGL2kIo]{0il/zg@o?S+e$D1.E1y#xD;|XZna6q)}Zt7xXJq');
define('LOGGED_IN_KEY',    'x$&AnttW6<%}r`$&w`x 5;+LFHm`]2m*W.=xtFm8;X[s^A8d*5E{j {?jB|{1!J@');
define('NONCE_KEY',        'M#Z!-qIepgn#8hhTp49Cl]k8J1)`pr6?T%&kVe`Nm/ 3|fq+1-Wye`ZA*t6,_-d7');
define('AUTH_SALT',        '+J?~3+B=_yCck1V7hCf?P{N01&vHo1NbV&LQ2Q/lZ4&_8O^Be-ss!#9#C6(~t?Em');
define('SECURE_AUTH_SALT', '|+(WL@(+r-4D~NLaC.t[9Vun!BHGkBZPW$Si^0e2]R%F0+P(z}[!J!tQI:{ooreH');
define('LOGGED_IN_SALT',   'b?T;jUOaPjumA uQ{~(#95mkgiaCG5Zfc#<W([+4PJ50&Y!;j`n;sy(#{2i,|90y)-f9!,btu6r]X0^/TwI=uP1FcNFOgIX^h~9_{V#r9++Y[w2');


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


/* Custom WordPress URL. */
define( 'WP_SITEURL',     'https://uxbox.design' );
define( 'WP_HOME',        'https://uxbox.design' );
define( 'WP_CONTENT_URL', 'https://uxbox.design/wp-content' );
define( 'UPLOADS',        'https://uxbox.design/wp-content/uploads' );
define( 'WP_PLUGIN_URL',  'https://uxbox.design/wp-content/plugins' );
define( 'COOKIE_DOMAIN',  'uxbox.design' );


/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '30' );
/* Media Trash. */
define( 'MEDIA_TRASH', false );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '1' );


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


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


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


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


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


/* FTP */
define( 'FTP_USER', 'FTP User' );
define( 'FTP_PASS', 'FTP Password' );
define( 'FTP_HOST', 'FTP Host' );
define( 'FTP_SSL', true );


/* CRON */
define( 'ALTERNATE_WP_CRON',    'false' );


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


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