<?php
/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the
 * installation. You don't have to use the web site, you can
 * copy this file to "wp-config.php" and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * MySQL settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://wordpress.org/support/article/editing-wp-config-php/
 *
 * @package WordPress
 */

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'infas' );

/** MySQL database username */
define( 'DB_USER', 'infas' );

/** MySQL database password */
define( 'DB_PASSWORD', 'lUtppUALg4W2U7U' );

/** MySQL hostname */
define( 'DB_HOST', '172.16.8.228' );

/** Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );

/** The Database Collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );

/**#@+
 * Authentication Unique Keys and Salts.
 *
 * Change these to different unique phrases!
 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
 * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
 *
 * @since 2.6.0
 */
define('AUTH_KEY',         'N?RB-O6oyPicq~3`iNW@|D^+RqfDT%2#bTO)VaPOf.dSEHLz@tX]Fw1,*&2N1spM');
define('SECURE_AUTH_KEY',  's~+9VSCCiIC1xm+1nG%zIQ_K~LO$*#rL}sA]c)3&zQ6H.VbT%7]k+${*QZL;Uk{|');
define('LOGGED_IN_KEY',    '$5K& nFA-%qy:>@>5E+Q|Q[x;;)5R?-dx^bKP@t p!1f%XBg!NkT|tK>wU*%=SAz');
define('NONCE_KEY',        '4|*{x6re{x`||*n>2O-OPMSRf`^i6/YC?mItuP$Qqrq/$*=+(8a3FW9KLzO)3I/a');
define('AUTH_SALT',        ';C/#V,hnt}%BJ5azuHIM:#_*-~wG++|8Ne)T>}#o3L5N&Ph&;Sp/P--M~)IR?cUQ');
define('SECURE_AUTH_SALT', 'I5KB6{+@|zrMxydf#cXK+<JQO6v-Q,VQO$-oxA&A>&DSHB9* Da;Alk;)0_c0Y7J');
define('LOGGED_IN_SALT',   'j%PkpeNOZOkr*w5cBBO|.fYla/zUa|,GO@R=a=asd>0cl0AaL-UKe#F|sLD9|iD%');
define('NONCE_SALT',       '0]~k@TzTtTv5yW#^s_)(Kg54d|JKN_|V%L$5Dgu_,m|D{L<Nj ++IlR75o0Ei[qI');

/**#@-*/

/**
 * WordPress Database Table prefix.
 *
 * You can have multiple installations in one database if you give each
 * a unique prefix. Only numbers, letters, and underscores please!
 */
$table_prefix = 'wp_';

/**
 * For developers: WordPress debugging mode.
 *
 * Change this to true to enable the display of notices during development.
 * It is strongly recommended that plugin and theme developers use WP_DEBUG
 * in their development environments.
 *
 * For information on other constants that can be used for debugging,
 * visit the documentation.
 *
 * @link https://wordpress.org/support/article/debugging-in-wordpress/
 */
define('WP_DEBUG', false);
define('WPLANG', 'es_ES');
/* Frontend */
define( 'WP_MEMORY_LIMIT', '96M' );
/* Backend */
define( 'WP_MAX_MEMORY_LIMIT', '128M' );
define( 'AUTOMATIC_UPDATER_DISABLED', true );
/* Aumentar memoria para carga de archivos */
ini_set( 'upload_max_size' , '1000M' );
ini_set( 'post_max_size', '1300M');
ini_set( 'memory_limit', '1500M' );

/* That's all, stop editing! Happy publishing. */

/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
	define( 'ABSPATH', __DIR__ . '/' );
}

/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';