File: /var/www/wordpress/wp-config.php
<?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', 'wordpress' );
/** Database username */
define( 'DB_USER', 'wordpress' );
/** Database password */
define( 'DB_PASSWORD', '74ee776cec272fd3e08915c3d787e571');
/** 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', 'Jp=v!b[D3i*V>]h1q1vsPF.w!DrUHi8X|mzK{xMz-DRP4fTguxzDy(5(wH4c79}l' );
define( 'SECURE_AUTH_KEY', '`}ai*}P8b:Qf;^Q:3U d`x{cv-rOSw1f<C_-`Fv~$C!{P*%ku.> 6S$t*uW=CDQt' );
define( 'LOGGED_IN_KEY', 'NXYe/j.IU1F!m1!0r`mw(X.ao7Dbnf<h1LEI|n:17Zc)K%zaE],t<|p=1sxiG*sf' );
define( 'NONCE_KEY', 'T+4GGG$+ni[opEs/[<9qMzO<q2_uws5e%:Z{le~Zt)J9s$iRO7o@xjorq$fAuHrc' );
define( 'AUTH_SALT', '0VQ$?ibkEfZ*USe5x!_%NO$Q$gE7>n8TF&x-!S_H/1mxhRC801a)((N_+g/Xn9j:' );
define( 'SECURE_AUTH_SALT', 'An&T0~by]==J]sA8G~cTGC}S2qOD(?{OIfEB8~=Jr?S/hv]7$uwQ]+Ds{G0$NUwl' );
define( 'LOGGED_IN_SALT', 'u)1I$D+=iJUl-T$|,sa {v%VtF)1^1@p@7Fx#/7skUzz.bx9:LCklBELM6W%@K?P' );
define( 'NONCE_SALT', 'XFw*o:N=P!m>.kF6eji!8!iALOA1ASPYG/Sy@H%7I&4;Jn}_1y,/:ai?`&$AVP1t' );
define( 'WP_CACHE_KEY_SALT', 'zk.Amo&Cd[a8lEU#ZIn;yjS<b1+hA4gg(#]x[D>iR=QJsJvU~8n_jnG}&+|jnSxC' );
/**#@-*/
/**
* 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_';
/* Add any custom values between this line and the "stop editing" line. */
define('WP_CACHE', true);
define('DISABLE_WP_CRON', true);
// WordPress debugging mode (for developers).
define('WP_DEBUG', false);
// WordPress update method
define('FS_METHOD', 'direct');
// WordPress update policy
define('AUTOMATIC_UPDATER_DISABLED', false);
define('WP_AUTO_UPDATE_CORE', 'minor');
// Workaround wp-cli issue with unset HTTP_HOST
// For more info see https://github.com/wp-cli/wp-cli/issues/2431 &/or
// https://make.wordpress.org/cli/handbook/common-issues/#php-notice-undefined-index-on-_server-superglobal
if ( defined( 'WP_CLI' ) && WP_CLI && ! isset( $_SERVER['HTTP_HOST'] ) ) {
$_SERVER['HTTP_HOST'] = 'localhost';
}
// Single-Site (serves any hostname)
// For Multi-Site, see: https://www.turnkeylinux.org/docs/wordpress/multisite
define('WP_SITEURL', 'http://'.$_SERVER['HTTP_HOST']);
define('WP_HOME', 'http://'.$_SERVER['HTTP_HOST']);
/**
* 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 );
}
/* 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';