1
<?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', 'NH uyJ+YrgIqh1*s|ws4^LE06|vPzb_a-d28U~XUyG.nt>H?eZHs0|vGyk+XQ&G3');
define('SECURE_AUTH_KEY', 'T9+9JS2_)L*`$_+ ~g$T!uR+%dw-*Il<<l#|wWAKYH]#cGmr7&/?MW-1$S`9V)h(');
define('LOGGED_IN_KEY', 'vD[=CH fqO9-S6v$Y-mS:3,r{n[R?f7HHsTKjlZb');
define('NONCE_KEY', 'W+C$RV-`:h?]1]_T/bVjd&WO+/jCh#7a9165_t:E|;/@L(_3N#JCZ(IY{3-Tb&sv');
define('AUTH_SALT', 'b3-oM<H=tFnQSytXwk7854DUiQ|f~vAsNy+@owx l/2YDVleIV?G!K/tuH,AY^UI?NFm');
define('LOGGED_IN_SALT', '`0q}F:!/N+q]}??,6v;7@}q<8_j~Scx(]F,uo:-_.fn@a Ey,^}mx6lsuPp/+(@N');
define('NONCE_SALT', 'ZQz}un`C<%Ea{lth3m,Fzlx356)@[m3O{QaeVk$L|ka$*GMtiI-l=/-uJd*zA?Qw');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'http://example.com/' );
define( 'WP_HOME', 'http://example.com/' );
define( 'WP_CONTENT_URL', 'http://example.com/web' );
define( 'UPLOADS', 'http://example.com/web/contenidos' );
define( 'WP_PLUGIN_URL', 'http://example.com/web/desarrollo' );
/* 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');