config
<?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', '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', 'U^InnT.$C|c{dff[HJRnGw]LF/Hs5fg_fK,N=:|S>$hCv|,78=vr~BkI^+Hoq.Ww');
define('SECURE_AUTH_KEY', 'e~`mHo^}?oL}g(o1(rY}g2]k~vBgN_UCU;QTtc#t9t7[|S6Vjw|UFiT:o[a#s};w');
define('LOGGED_IN_KEY', 'G{Q)c[#lWvf7M[4qUb|O|E0!hV3|,4>[I.hWC-yy5|J#!|F3>)J3~+y3+mB.5');
define('NONCE_KEY', ';^I_T)Q2GYplo78q+)#SE<T{!l~qH8F3');
define('AUTH_SALT', '87q;zaO@<aYqx)BxAdK:8]!_~*O%z9S pL|~zP4fm:pGOmg3z*~^G|dUr:T34');
define('SECURE_AUTH_SALT', '2IKi0W)N|+^}EQG Icsa}4wHSUH:N4o^,GV,NvqUe^');
define('LOGGED_IN_SALT', 'Gh%QL`ZfvHSkN^kIa;eC|>>9ZvQ{/lOxV,}0&u%EUj#QS4-?=O5A]R[V22<w:Y!t');
define('NONCE_SALT', 'cFC}-:.dh%YzEx,pye<k[EA@{}*JcR#W-+Sig+~:2F-Y2K0&6-X%!KI*P-s;~,|J');
/* Custom WordPress URL. */
define( 'WP_CONTENT_URL', 'controls' );
define( 'UPLOADS', 'uploads' );
define( 'WP_PLUGIN_URL', 'modules' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '2' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '3' );
/* 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', false );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '128M' );
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' );
define( 'ALTERNATE_WP_CRON', 'false' );
/* 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');