Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

NMA

xyz

<?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',     'neonmoonads_XYZ' );
define( 'DB_USER',     'admin' );
define( 'DB_PASSWORD', 'Dingodog66' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8mb4' );


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


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'gTbvnO,/&[]5^n3qJBo|BB(|w}_~8?2<:|WDB48*En W9{8l*-db;92;QGWkW,Dd');
define('SECURE_AUTH_KEY',  '/1:VM:$XJc9;3GnJo<y3c!+C}wtx0*|PEC&wgL?<lCJi<T8/+|ge?s~Kw|9us9F!');
define('NONCE_KEY',        'm0m.(+[_L7IA$(s:Yx}~);p6/toq$(NlhTI/C;9-41qSiJpF:@Wf{B!)`dQ[r0Y|UgEG');
define('SECURE_AUTH_SALT', '(PL9|Pc(_yE9e3)]9jO7 qetz*!6r|v5Xp[BJ^pMZ:F&-W:ks|2Lr/g ^}-m@m`>');
define('LOGGED_IN_SALT',   'MB(,!>I9=V[E{h)E-%4?S,nF>3HOG(_x59AZ-2|OoA6wm-ZsLxzg!sk/Yi8QLc8Q');
define('NONCE_SALT',       's+0-1I&{Gbl)R0~;|hQL2_Lf]]FL|kx:w9oTq@Uu#r:~[fRaa)dP@|8:Rohb5p]A');


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


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


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


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


/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '30' );
define( 'WP_MAX_MEMORY_LIMIT', '256' );


/* 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', 'root' );
define( 'FTP_PASS', 'Dingodog66' );
define( 'FTP_HOST', 'neonmoonads.xyz' );
define( 'FTP_SSL', true );


/* CRON */
define( 'DISABLE_WP_CRON',      'false' );
define( 'ALTERNATE_WP_CRON',    'true' );
define( 'WP_CRON_LOCK_TIMEOUT', 60 );


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