public/blog/wp-config.php line 107

  1. <?php
  2. $_SERVER['HTTPS'] = 'on';
  3. /**
  4.  * The base configuration for WordPress
  5.  *
  6.  * The wp-config.php creation script uses this file during the installation.
  7.  * You don't have to use the web site, you can copy this file to "wp-config.php"
  8.  * and fill in the values.
  9.  *
  10.  * This file contains the following configurations:
  11.  *
  12.  * * Database settings
  13.  * * Secret keys
  14.  * * Database table prefix
  15.  * * ABSPATH
  16.  *
  17.  * @link https://wordpress.org/documentation/article/editing-wp-config-php/
  18.  *
  19.  * @package WordPress
  20.  */
  21. // ** Database settings - You can get this info from your web host ** //
  22. /** The name of the database for WordPress */
  23. define'DB_NAME''eurochange_blog' );
  24. /** Database username */
  25. define'DB_USER''usuario' );
  26. /** Database password */
  27. define'DB_PASSWORD''usuario01' );
  28. /** Database hostname */
  29. define'DB_HOST''127.0.0.1' );
  30. /** Database charset to use in creating database tables. */
  31. define'DB_CHARSET''utf8mb4' );
  32. /** The database collate type. Don't change this if in doubt. */
  33. define'DB_COLLATE''' );
  34. /**#@+
  35.  * Authentication unique keys and salts.
  36.  *
  37.  * Change these to different unique phrases! You can generate these using
  38.  * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
  39.  *
  40.  * You can change these at any point in time to invalidate all existing cookies.
  41.  * This will force all users to have to log in again.
  42.  *
  43.  * @since 2.6.0
  44.  */
  45. define'AUTH_KEY',         '%hY9PuQy*N?ZQIjtMrxDUt r2E^2`&YB|R88l<G|NBmu!<M;M} g%$~R@J;q-VNk' );
  46. define'SECURE_AUTH_KEY',  '0<6^MtkG dtnfe#=nCaY!|) ZE4?v7 u7-{3_:_i^Nzg84^|)*6B/eYbT{-W35;%' );
  47. define'LOGGED_IN_KEY',    'B4$tbVkQ|KP=BI?sT>ihshxlp}@eW9#F<Qy?;<+/G] )uMjMwB.=y<%B6d]@?q;o' );
  48. define'NONCE_KEY',        'YnYzz5R^d-%]OD?J_7TzczsU9:Yrx/;5rvK{EfQc5 (J>SeJKc9^/c7|X$OLE8xd' );
  49. define'AUTH_SALT',        '$u0Vn0.x/r}y+zPV}Pm}RE#k F])4?W,ydF=+;Xtm9K{Acn E-Ug#-ZsnqJ3A<Bc' );
  50. define'SECURE_AUTH_SALT''%Hpl^7}?1GF{<j4Mgkv`D)@`|z`E(W1U2nx-@g]J-:Ap4ix[Y@_-1-8X`bhV$FJ4' );
  51. define'LOGGED_IN_SALT',   'i<#pl:>7udr-b`e {,;*cbdq +p9eCR<9fb-pG1lLWndnnnHpWG_zo5(Tef.:a.l' );
  52. define'NONCE_SALT',       'm,2,(^j|lEQ*$oMkIgd<-l::#WxN0hK]@rGVSdi!|8u+yp&]vd-K|K}xZ+Gww^r6' );
  53. /**#@-*/
  54. /**
  55.  * WordPress database table prefix.
  56.  *
  57.  * You can have multiple installations in one database if you give each
  58.  * a unique prefix. Only numbers, letters, and underscores please!
  59.  */
  60. $table_prefix 'wp_';
  61. define('FS_METHOD''direct');
  62. define'FS_CHMOD_DIR', ( 0755 & ~ umask() ) );
  63. define'FS_CHMOD_FILE', ( 0755 & ~ umask() ) );
  64. /**
  65.  * For developers: WordPress debugging mode.
  66.  *
  67.  * Change this to true to enable the display of notices during development.
  68.  * It is strongly recommended that plugin and theme developers use WP_DEBUG
  69.  * in their development environments.
  70.  *
  71.  * For information on other constants that can be used for debugging,
  72.  * visit the documentation.
  73.  *
  74.  * @link https://wordpress.org/documentation/article/debugging-in-wordpress/
  75.  */
  76. define'WP_DEBUG'false );
  77. /* Add any custom values between this line and the "stop editing" line. */
  78. define'WP_HOME''https://eurochange.comercial.cc/blog' );
  79. define'WP_SITEURL''https://eurochange.comercial.cc/blog' );
  80. /* Memory Limit */
  81. define('WP_MEMORY_LIMIT''128M');
  82. /* That's all, stop editing! Happy publishing. */
  83. /** Absolute path to the WordPress directory. */
  84. if ( ! defined'ABSPATH' ) ) {
  85.     define'ABSPATH'__DIR__ '/' );
  86. }
  87. /** Sets up WordPress vars and included files. */
  88. require_once ABSPATH 'wp-settings.php';