Создал(а) 'wp-config.php'

This commit is contained in:
dimon 2022-04-10 05:22:21 +00:00
parent 8617908e45
commit 917a4faac1

30
wp-config.php Normal file
View File

@ -0,0 +1,30 @@
<?php
define( 'DB_NAME', 'wordpress_db_name' );
define( 'DB_USER', 'wordpress_user' );
define( 'DB_PASSWORD', 'wordress_pwd' );
define( 'DB_HOST', 'wordpress_host' );
define( 'DB_CHARSET', 'utf8' );
define( 'DB_COLLATE', '' );
define( 'AUTH_KEY', 'secure_auth_key_value' );
define( 'SECURE_AUTH_KEY', 'auth_key_value' );
define( 'LOGGED_IN_KEY', 'logged_in_key_value' );
define( 'NONCE_KEY', 'nonce_key_value' );
define( 'AUTH_SALT', 'secure_auth_salt_value' );
define( 'SECURE_AUTH_SALT', 'auth_salt_value' );
define( 'LOGGED_IN_SALT', 'logged_in_salt_value' );
define( 'NONCE_SALT', 'nonce_salt_value' );
$table_prefix = 'wp_';
define( 'WP_DEBUG', false );
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
define( 'WP_HOME', 'https://' );
define( 'WP_SITEURL', 'https://' );
require_once ABSPATH . 'wp-settings.php';