<?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:
 *
 * * Database settings
 * * Secret keys
 * * Database table prefix
 * * Localized language
 * * ABSPATH
 *
 * @link https://wordpress.org/support/article/editing-wp-config-php/
 *
 * @package WordPress
 */

// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', getenv('WORDPRESS_DB_NAME') ?: 'mpc' );

/** Database username */
define( 'DB_USER', getenv('WORDPRESS_DB_USER') ?: 'tce' );

/** Database password */
define( 'DB_PASSWORD', getenv('WORDPRESS_DB_PASSWORD') ?: 'B9*H#iJSZ&M1' );

/** Database hostname */
define( 'DB_HOST', getenv('WORDPRESS_DB_HOST') ?: 'localhost' );

/** 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',          '*?kDTUKt)h$Mm:7nd3zX!AkMp8HanzeK!1% 1Pr]DwU?2,hpSTC=5r8YKy<Ewcbf' );
define( 'SECURE_AUTH_KEY',   'zx$06EU(k6)v6LI+M/*5~<%<y~lNSzM.mUH5|9p4?$}%2`{mFyh%5a6ZXz>!i;mw' );
define( 'LOGGED_IN_KEY',     '#$4a5h0_^}_S[nfu*5UMXH>|0}!nWku g0UuTJH=yZWjwSF@hA.kJ 3+}j{m_z-X' );
define( 'NONCE_KEY',         '4t4#!Km8{!`PY4/bh#1&p*BNv> (?*T$NP9o)$hs-kt[rAy:MoY=CrMZoV%8M|>/' );
define( 'AUTH_SALT',         'G>}EG(c%&NIiK,W#MY5S%{0L=J80Q|+jG[Ri}nz<0>j+{o8%--A~J,j+8%CW=/Ss' );
define( 'SECURE_AUTH_SALT',  'bp0)>@Bn4=_#De+8= {t[[Im]FJ~7tO;`9JT-].?d^~FX]%WDmxF$x[;{rkX6,9t' );
define( 'LOGGED_IN_SALT',    'W~6iDf+{wDPV++YpnZK21oEy.?O&7bZLsz1ZgSQx6C 3phY#1F*f0O6*{aX2Yo2*' );
define( 'NONCE_SALT',        'L[< fMqjtEJ.kKF<MTlJmJ@qniob%/b@ukJ4oli[oQ3oowH<Zxa5sEj2*zC3<[6;' );
define( 'WP_CACHE_KEY_SALT', 'o3/6;[|+v58K,uGli,>~qZqKKJ9[.kw;f.;PzG5!at)K]Za;o3F5<zs5~AU=1y7#' );


/**#@-*/

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


/* Add any custom values between this line and the "stop editing" line. */

// Force localhost URLs for local development
define( 'WP_HOME', 'https://mpc.tcema.tc.br' );
define( 'WP_SITEURL', 'https://mpc.tcema.tc.br' );



/**
 * 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/
 */
if ( ! defined( 'WP_DEBUG' ) ) {
	define( 'WP_DEBUG', false );
}

define( 'WP_ENVIRONMENT_TYPE', 'local' );

define('WP_HOME', 'https://mpc.tcema.tc.br');
define('WP_SITEURL', 'https://mpc.tcema.tc.br');

if (
    isset($_SERVER['HTTP_X_FORWARDED_PROTO']) &&
    $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https'
) {
    $_SERVER['HTTPS'] = 'on';
}

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