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',         'z[E@LZ8-K)W$cy,[w[{:JLxE/L[C|oGCTs*:hXt#J|5_g~ U%oSSC]p~M~4H>&FI');
define('SECURE_AUTH_KEY',  '-o7H%!FOJ8OoI=Nl~cm<KC:_Xi(52b!)9R8W!8,Hvu Kd9xfe~njW-{CE?_g~qZl');
define('LOGGED_IN_KEY',    '/Li7[|+[~M&d0*`ww%e?G]Cw;?4?y4~Gm%We(8I*]l}5A[!~T.F84-Yy*2j/Z-zT');
define('NONCE_KEY',        'K+*7]$sjm>4HzR|5n7P>_1=5=d@p5&NCY0!iB5JG=iRjO4m|OBc/;BFdQ7|T(&!y');
define('AUTH_SALT',        'dVD--..NkS:+g819JLNDO+br{,ei9Y;wFWgR+U`+S4}|MtQM`)q7LxflQTOIu]+f');
define('SECURE_AUTH_SALT', '3=tY-AU[`n2jCphxCC{eB|vO{T@^CKYS|??5A,x;1jd1vpr3DPvamTUQgv<rSFE|');
define('LOGGED_IN_SALT',   'xI)JOuUx-_:n]7nP%q0;`bq>@Hr3)R%eZgSw+[k|d/_mO}{1;WsOO5qY(UMv=k^~');
define('NONCE_SALT',       'B*%|k0b+2T|-lRT&OiAf|iH5N1$ht+.8;5;t7Sc!q6Q,^#nuL+ic+}6-u7jtlA@Y');

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.