Custom wp-config.php

WPTurbo » Snippets » Custom wp-config.php
0

Created with:

WP Config Generator

Visibility: 

public

Creator: peltier

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				/**
 * 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://wordpress.org/support/article/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', 'wordpress' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** The Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );


/* Prefix For All Database Tables */
/**
* 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 = 'wpturbo_';


/* Autosave Interval */

/* Limit Revisions */
define( 'WP_POST_REVISIONS', 3 );


/**#@+
* 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',         'JvC5|b<6dG|aPs,HfkZ2[B_vR|KX,ClT#}3g FMP6?g&{K%y-N>|Tvb-jZ=_+.}R');
define('SECURE_AUTH_KEY',  '?bdER,J>?BPqg_]3a&ujdlJ,$^J-A4|g|S01bTxWD(JGX^{-bBBX>Yy:BR}+0P;@');
define('LOGGED_IN_KEY',    'C*Z.JJn=0$zb-+2HVGrX$0[%rfPM*N,,#kCStmE-ex1L]|V9_>&#Ds{$(v^Mo9>*');
define('NONCE_KEY',        'i2b=zH<j*?X?22KLj@{#-:c$=A`A`khJ?)Q0mDq0@J{X(J 4ifjne-$zEFqO`B&e');
define('AUTH_SALT',        '683lKZJByk&bca1pJ,kP;[#0TM-Iiv!yj*%:Q`jW-{2u]q9DMR!&~c1a9 :Gjf0b');
define('SECURE_AUTH_SALT', '2`7VCX-}d,kctRXhm3ZUoz0wD~n`s~B$Nz6FYt:m4&Z4JYKT|V4a`l+qwR_(-3xE');
define('LOGGED_IN_SALT',   '!.,p|>i#4_51no|ce&}I6b8d+q2%[hH$y-S@H I6BmcF~_E}x(oY8Jz +6w]9UIz');
define('NONCE_SALT',       'P9WpF7=/5{uw1H>9zT4* I%:86g_CEO9r&X_aG:`0AhhDz;RLB}YS&SH2R, lbD+');

define( 'FORCE_SSL_LOGIN', TRUE );
define( 'FORCE_SSL_ADMIN', TRUE );


/* Performance & Speed Settings */
/* Compress CSS */
define( 'COMPRESS_CSS', TRUE );

/* Compress Scripts */
define( 'COMPRESS_SCRIPTS', TRUE );

/* Concatenate Scripts */
define( 'CONCATENATE_SCRIPTS', TRUE );

/* Force Gzip */
define( 'ENFORCE_GZIP', TRUE );


/* Memory Settings */
define( 'WP_MEMORY_LIMIT', '1024' );


/* 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');

			

Register an account to save your snippets or go Pro to get more features.