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',         'xn{|C0{K1;x1ib_fr|(8#o-[`@JTS8aE)6Cr1ou!9`#f!KLM)R)NzqLJ4$M~/p&e');
define('SECURE_AUTH_KEY',  '4R+{i<6:gQmUki8hLdV+>V$-JNibX47h9Zr;Bkjl2GwpN1K},h7XcJ4xm]yNU|u}');
define('LOGGED_IN_KEY',    '&>X19/CIhLYp-4?6)BnL6U1>kC#gajqKe]INIu1inb;^]r-G35y1sT%3w[+G.^`N');
define('NONCE_KEY',        'N<s_(_]cO6|@v+Nx2o4hYOi{jLs=o/#R%&^a|;|Qk+%ICuJ?+CTH-g@jP|5n 7LO');
define('AUTH_SALT',        '>Nr)6P|EnG=znssm--#3g-Fn-EQjW%./Own C8Axp`DW|Qi>L mVSBEyrG~}]2wb');
define('SECURE_AUTH_SALT', 'X$DyKEr1Jo-2_8nijaK_t}$Uu-=LEh|h2.(Z0/?y~=U[vj1gbBrTsLZ-+_]TxDxf');
define('LOGGED_IN_SALT',   'MZw?p6PjScl(;Z?c3|i|6_kH:5;?CCPtN}aKVl?:o4{gb2!cr4VI6TC4xCR,l^CT');
define('NONCE_SALT',       '0$i4*Yy]|W_Zv+@L|C&0M:|`br(5N/KQK%JzVGQ@#`NzFss7E|35{aa1&0h^zMl{');

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.