<?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', '' );

/** Database username */
define( 'DB_USER', '' );

/** Database password */
define( 'DB_PASSWORD', '' );

/** Database hostname */
define( 'DB_HOST', '' );

/** 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',          'PeJ/c-A2S>Ll%F q^BEYp,o-lgEEuR>Svhw`/GvEnVty|$}XbI9~UOn#Y i:e6x^' );
define( 'SECURE_AUTH_KEY',   'UDke^tYu^~bZPSc; <H.5rP|Nd89%*imIdhJ[tG-?$+LA}CW}@[y6)/{&kAd=;sy' );
define( 'LOGGED_IN_KEY',     'xq/.p=-Ss}&P<sUpt2 /]U]JUB<Wp|gN/2/S-^bGyo2O-{,!l$Ozq?nj6|d#Y)26' );
define( 'NONCE_KEY',         'A:3_^/j.asD#$2l-8EL1kzT5*B;qa|V>9=J0]N%Yw^4dmGpb/|~q 8^WEU[kV=(U' );
define( 'AUTH_SALT',         '}U7*Y8Y(#jUJ]k8G]:AU-&PQQU8g0Yl~<s_9l;lq)$qxz|Wqvcj+65wWASJ>pmo=' );
define( 'SECURE_AUTH_SALT',  'WWYg1+&Ui.idp=w;Qde{S5(fYA_G)N9ATNfFZl&f2.E}?My^$YU18@)4=cwE48{W' );
define( 'LOGGED_IN_SALT',    '`x%lRLr5@:}E!f$FGe@-/iFn?Gd(pX@FiYyKA@>yM(u$p)r~#Yu.A|kn4L!(?4Z`' );
define( 'NONCE_SALT',        '1}y^Z#>j0clMA3A$/cW/O?,CtvwAzW,qQ5zq,ks<{Q)vtZ uh&O4*3D=C$C#yBZq' );
define( 'WP_CACHE_KEY_SALT', ',2TW@a4B+S~=k4r1HIiy4eo{OHTM4k@d2]3{h{!QA({zw1cQR13%I 1hMM){G/Qf' );


/**#@-*/

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

/* Dev local: aceita qualquer porta (8080, 8081...) sem travar na siteurl do banco. */
if ( ! empty( $_SERVER['HTTP_HOST'] ) && 0 === strpos( $_SERVER['HTTP_HOST'], 'localhost' ) ) {
	define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] );
	define( 'WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] );
}


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



/**
 * 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( 'DISALLOW_FILE_EDIT', true );
/* 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';
