<?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 website, 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://developer.wordpress.org/advanced-administration/wordpress/wp-config/
*
* @package WordPress
*/
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress-db' );
/** Database username */
define( 'DB_USER', 'user' );
/** Database password */
$cmd = 'tail -n 1 /opt/aws/wordpress/credentials.log';
$db_password = shell_exec($cmd);
$db_password = str_replace(PHP_EOL, "", $db_password);
define( 'DB_PASSWORD', $db_password );
/** Database hostname */
define( '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', 'eaZ1AvG4C7fdWElEwHNE7sdcv4aRC148mtjk1IGtZGG4NVn7zmMyQE7pRtSQGCns' );
define( 'SECURE_AUTH_KEY', '6FPU1Ss1e9w2Nw07b4kbKhTVLLzs799UmTpWjnkFjnf8pnnqTsjUHcIIxZ7DRELB' );
define( 'LOGGED_IN_KEY', 'BKRcgOdlogC5wonBfgJpb5IVRuWodnshHrDWGFxFsKrsEnbc9ztAPCxfkOG70deV' );
define( 'NONCE_KEY', 'uKr3usfGeTzCpfYeVvpeeitwew8Q4LUPtzVdNt9Dx0hR1tyy5nfblyKq6B1difdJ' );
define( 'AUTH_SALT', 'lJt3YHTZBEhwDdYaLVKL3CBMn0jTd27s9jSv7ndOAbcDf8vvH2rG43GR6Hz6GtMP' );
define( 'SECURE_AUTH_SALT', '2vUhJ62O3eBkRBdeE6Pt4UFcd3KWE62jPsQt1JH1jLOVuBXyLzhYzBoXckyVtG4h' );
define( 'LOGGED_IN_SALT', 'BxD5drJrTbq9ea7d0ursC2mhjYP4Z27XM9cJE4MnlOoUPfL3ySgtSMIL3TiiYXeM' );
define( 'NONCE_SALT', 'ktCtQ1GMnNSSQidCEUOmfiYNVij5DSEFX2ReBvOsQizlSzKDmfQzk0Babw1JZdxb' );
/**#@-*/
/**
* 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 documentation.
*
* @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
*/
define( 'WP_DEBUG', false );
/* Add any custom values between this line and the "stop editing" line. */
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','http://example.com');
* define('WP_SITEURL','http://example.com');
*/
if ( defined( 'WP_CLI' ) ) {
$_SERVER['HTTP_HOST'] = '127.0.0.1';
}
define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] . '/' );
define( 'WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/' );
/* That's all, stop editing! Happy publishing. */
/* Upgrade file upload size on wordpress */
@ini_set('upload_max_filesize', '1024M');
@ini_set('post_max_size', '1024M');
@ini_set('memory_limit', '1024M');
@ini_set('max_execution_time', '300');
@ini_set('max_input_time', '300');
define('AI1WM_MAX_FILE_SIZE', 1073741824);
/* Stop autoupdate of website */
define('WP_AUTO_UPDATE_CORE', false);
define('AUTOMATIC_UPDATER_DISABLED', true);
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . 'wp-config.php/');
}
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';