public/blog/wp-config.php line 107
- <?php
- $_SERVER['HTTPS'] = 'on';
- /**
- * 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
- * * ABSPATH
- *
- * @link https://wordpress.org/documentation/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', 'eurochange_blog' );
- /** Database username */
- define( 'DB_USER', 'usuario' );
- /** Database password */
- define( 'DB_PASSWORD', 'usuario01' );
- /** Database hostname */
- define( 'DB_HOST', '127.0.0.1' );
- /** Database charset to use in creating database tables. */
- define( 'DB_CHARSET', 'utf8mb4' );
- /** 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', '%hY9PuQy*N?ZQIjtMrxDUt r2E^2`&YB|R88l<G|NBmu!<M;M} g%$~R@J;q-VNk' );
- define( 'SECURE_AUTH_KEY', '0<6^MtkG dtnfe#=nCaY!|) ZE4?v7 u7-{3_:_i^Nzg84^|)*6B/eYbT{-W35;%' );
- define( 'LOGGED_IN_KEY', 'B4$tbVkQ|KP=BI?sT>ihshxlp}@eW9#F<Qy?;<+/G] )uMjMwB.=y<%B6d]@?q;o' );
- define( 'NONCE_KEY', 'YnYzz5R^d-%]OD?J_7TzczsU9:Yrx/;5rvK{EfQc5 (J>SeJKc9^/c7|X$OLE8xd' );
- define( 'AUTH_SALT', '$u0Vn0.x/r}y+zPV}Pm}RE#k F])4?W,ydF=+;Xtm9K{Acn E-Ug#-ZsnqJ3A<Bc' );
- define( 'SECURE_AUTH_SALT', '%Hpl^7}?1GF{<j4Mgkv`D)@`|z`E(W1U2nx-@g]J-:Ap4ix[Y@_-1-8X`bhV$FJ4' );
- define( 'LOGGED_IN_SALT', 'i<#pl:>7udr-b`e {,;*cbdq +p9eCR<9fb-pG1lLWndnnnHpWG_zo5(Tef.:a.l' );
- define( 'NONCE_SALT', 'm,2,(^j|lEQ*$oMkIgd<-l::#WxN0hK]@rGVSdi!|8u+yp&]vd-K|K}xZ+Gww^r6' );
- /**#@-*/
- /**
- * 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_';
- define('FS_METHOD', 'direct');
- define( 'FS_CHMOD_DIR', ( 0755 & ~ umask() ) );
- define( 'FS_CHMOD_FILE', ( 0755 & ~ umask() ) );
- /**
- * 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/documentation/article/debugging-in-wordpress/
- */
- define( 'WP_DEBUG', false );
- /* Add any custom values between this line and the "stop editing" line. */
- define( 'WP_HOME', 'https://eurochange.comercial.cc/blog' );
- define( 'WP_SITEURL', 'https://eurochange.comercial.cc/blog' );
- /* Memory Limit */
- define('WP_MEMORY_LIMIT', '128M');
- /* 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';