define( 'WP_CACHE', true ); // Added by WP Rocket /** * 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://codex.wordpress.org/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', 'bitnami_wordpress' ); /** MySQL database username */ define( 'DB_USER', 'bn_wordpress' ); /** MySQL database password */ define( 'DB_PASSWORD', '575339d712' ); /** MySQL hostname */ define( 'DB_HOST', 'localhost:3306' ); /** 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', '26f0ca01c012d234871b71fec2ffb8184cf8ff4fb40d89c35aa784e835f45b31'); define('SECURE_AUTH_KEY', '5c52a325f0f78bff73931b9d9e01412623ffefa83fb1d8182325c9e3153415da'); define('LOGGED_IN_KEY', 'e9daae254bb1a3cf01b5ceba5969c7e846effe9719d22b1e70138d79cb9369e5'); define('NONCE_KEY', 'c8025a50f3d8b21b6f06eb22b5fb0ef6e72bfe98b2b49f41684908b6e4d36dd0'); define('AUTH_SALT', '5f840ea9e0042ce40c69f90e8b960c45808ae1ea40c8a0d2a06454621c08e144'); define('SECURE_AUTH_SALT', '8c90a1b750597759eb4b43480d05c117ecfe74d2656d0a46dfa07fb498de94f5'); define('LOGGED_IN_SALT', '4ce5d5ab2e5807c591b43b7fa11674d5b0bcc3630ec71775241c92ec33bbff35'); define('NONCE_SALT', 'b365ff32979cf5f6ec8c7e9a0e2090dbaaa39f3725a1d64e5769c9c2e7c7b334'); /**#@-*/ /** * 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 Codex. * * @link https://codex.wordpress.org/Debugging_in_WordPress */ define( 'WP_DEBUG', false ); /* That's all, stop editing! Happy publishing. */ define('FS_METHOD', 'direct'); /** * The WP_SITEURL and WP_HOME options are configured to access from any hostname or IP address. * If you want to access only from an specific domain, you can modify them. For example: * define('WP_HOME','https://example.com'); * define('WP_SITEURL','https://example.com'); * */ if ( defined( 'WP_CLI' ) ) { $_SERVER['HTTP_HOST'] = 'localhost'; } define('WP_SITEURL','https://' . $_SERVER['HTTP_HOST'] . '/'); define('WP_HOME','https://' . $_SERVER['HTTP_HOST'] . '/'); /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', dirname( __FILE__ ) . '/' ); } /** Sets up WordPress vars and included files. */ require_once( ABSPATH . 'wp-settings.php' ); define('WP_TEMP_DIR', '/opt/bitnami/apps/wordpress/tmp'); // Disable pingback.ping xmlrpc method to prevent Wordpress from participating in DDoS attacks // More info at: https://docs.bitnami.com/general/apps/wordpress/troubleshooting/xmlrpc-and-pingback/ if ( !defined( 'WP_CLI' ) ) { // remove x-pingback HTTP header add_filter('wp_headers', function($headers) { unset($headers['X-Pingback']); return $headers; }); // disable pingbacks add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['pingback.ping'] ); return $methods; }); add_filter( 'auto_update_translation', '__return_false' ); } define('WP_ALLOW_REPAIR', true);