Custom wp-config.php

Home » Snippets » Custom wp-config.php
0

Created with:

WP Config Generator

Visibility: 

public

Creator: Julien

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',         ' ^RrDRs3`+AAUMv~[I-;<lDtv~M02=2aTVvbLKDc2kV8=@I}{;#vA85z,{chE_5)');
define('SECURE_AUTH_KEY',  'ED{J`MKX~yA,3]+C.E|zpVaO#|[bB+}N}B-Am&+]@mM1VbkYtUc4T?ByccQ`5..5');
define('LOGGED_IN_KEY',    'T<j.+mFuyrq}*q|rd5a;nc`Upo-q^R.+L3lu@BYs9a0_Kd:DX0jv4u. x0%+zrtp');
define('NONCE_KEY',        ';LL*T0d{KI@U)d o6W/@-KyucaF=D TF/6[+#>bk0Ds}_Q^gHdt+,]vmVf}ry{>R');
define('AUTH_SALT',        '>)l Qhc!q`;uG7O$+_VN]^gF-4FVvGv3w5+|slNB}Ek_Gg)6.wagOuu,L[B>p6=l');
define('SECURE_AUTH_SALT', 'VUZuk)[@%|t1M-QQ`4+&OA;#sF-k&Y6#Up.K6$<5ot)m6f&W>nQ*]y@(Pz=O@tu-');
define('LOGGED_IN_SALT',   'T{!R$Z=W%6S||mQ1oP8;N&ftsr>~5JTyFgb~]rDZp&rsYbISNg+` X*Vet|+S?e.');
define('NONCE_SALT',       '1UlZI80V/),nNaqXM@X#ezxV8S)Fl_p?wXF)-tX}(6$c)AF-gW~j2w,R*0VLO|,a');

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.