website/wp-config.php

78 lines
2.7 KiB
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:
*
* * 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', 'local' );
/** MySQL database username */
define( 'DB_USER', 'root' );
/** MySQL database password */
define( 'DB_PASSWORD', 'root' );
/** MySQL 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', 'HQcDt5LXEkfJ4HjfxwSYaehF8J42VkPR43o4y7xtBgGkoFv8JQLwwjjCWhtVz7Q+j0i3hrcqSe6blVVnDy/mMg==');
define('SECURE_AUTH_KEY', 'eECo3MXfrSWkfsnU2E5lrqHi45VVjwxqphGL6odwt9JVPCt3+YSE5SsulkleKXp2WPkNHL6P/Rf66xd+UwEEVA==');
define('LOGGED_IN_KEY', '6uiYujcJReKsFyJccMI275dd4PC3I1NZNfXGg0r39uA3H7NSn9/RNONR176g9zSg/CWTOpzGcsxiT3Q8niMaFw==');
define('NONCE_KEY', 'STbx63fttufKTrWMIGBb7oUcTA1w99iQZd47dCAyqQH3xxhgbRsTzg3RHIYjHIY01RAM+2YaUV6aZmjKgEardg==');
define('AUTH_SALT', 'eycro8E3MVJe6jcwx4AtVyZ+PDsBBEPCgIru8lzzfe2sYocNEWmWOM5tqhBlw9SzJDTSkFzrLlS/MzzCmnRemQ==');
define('SECURE_AUTH_SALT', 'Jw4IV73l72xy2dKHrDXs1MwPOXSiT/sP8nE77vJ10yoS7wYWesIABDfbffB8ppavF9VU5ukRGlh87N+faJKvRA==');
define('LOGGED_IN_SALT', 'Nd5n8pU/8AnW9kqsP4OzzA0bPGDfgdQ4QieBeXm+zz4WG52HBjbElo4iRd51lXaWRUHhoNdUbds/mD8X61tsfQ==');
define('NONCE_SALT', 'f2Dgq7TG9i92P7N5UaPJOD7EAJOMUIZmOwsFrd44ROEVFx224AP9Q+OdukbF/sKNSnWrpjhAl5cPXCe+24kbFQ==');
/**
* 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_z3k13dwiuc_';
/* That's all, stop editing! Happy publishing. */
/** 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';