wp-con
<?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', 'wordpressdb' );
define( 'DB_USER', 'wpuser' );
define( 'DB_PASSWORD', 'wpuser@' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'uf@)-k-5$?r^f8Z33?0]I K8nczk0=!rrC1qq^el]~i1vL7ikb,JY|uC/~.-q/V]');
define('SECURE_AUTH_KEY', 'Z@VG4x-:qv~_Oh*.>^=dQR68{x-b$t[a|4Y4CWmfY7(.M#WjXC+Ptv-T>EZ]FXm|');
define('LOGGED_IN_KEY', 'tZ4fa#HJ&O]ETQ -[8|&1Wgept;*p%%_ lla(45[u)+OW^%');
define('LOGGED_IN_SALT', '|%m|U1|rC{3gq1{R+M9xqWk<+Dnb!<!Vp-<3IRXnRgfABLHtPOlD|CE^i8U!*c[+');
define('NONCE_SALT', 'q[4bgE/ngqi|vZpgJ[PRV#svc.:ttsRM7F9{kciHTE$#XLt#|QVkAcO^$<v%p2YE');
/* WordPress Localized Language. */
define( 'WPLANG', '' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '0' );
/* Compression */
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP', true );
/* 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');