Custom wp-config.php

WPTurbo » 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',         'o(a4-mc+8:G<P9MP52mqF53,0rq%H*7^&?H;{QC-JPh-CpL|n+R5ux)]twM.-qb%');
define('SECURE_AUTH_KEY',  'S;Yjkk4y-D%?n%9K dI+B<bcHQqH}`p=Gu>+>MhtSQnTQ}3W9`a|)zm(o)U-7d>3');
define('LOGGED_IN_KEY',    '6yejERv!&%/HM$8t?j$*=>?rg5t,by;R`0M)CSG!g3E^S/0dj>vQpx+:d^Eh>6Cr');
define('NONCE_KEY',        'Bg.@%bCh-].oWrp%v?A[($oEas0[i[P7f-?^+x#$/c56nd9<l-jQwbI~) `uvHCQ');
define('AUTH_SALT',        'Yb%cT F:R?zVVxR>({Oia^09[i*&_C_Hf~]#|+0I-.86ec6x-5dZOM&flu/b{lz|');
define('SECURE_AUTH_SALT', 'F29Li.1RLMmlDV>Nf[fj~[DD:t-|9-d2P{X?h!udo_($ktP)v?GRyK])ijgA+EAe');
define('LOGGED_IN_SALT',   'Bf-Sew?^k._Sy7]0Nf~nB|!5A)#~21I^N%bY1W)|Q},<_s/d)YOI]h!H^J0)JfuS');
define('NONCE_SALT',       'cO#e bC|aENv(?^ol)1,-dqrznw+K rS8+Er/K4pjRsS~3/R]++-Bp%d/=^OC~+c');

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.