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',         'lHj|p&0R!1iIVF9ewPnmmO4|8rT*bC=.OD.c|dM}}Yja^jLk]$0j1;m?qy=y.]t^');
define('SECURE_AUTH_KEY',  ':h>3fhZAEHaKSpV9pfM m-=xY7|t0N?h:P3GUgk#T-#v+r[FI.iF|8t-jBFo?^nR');
define('LOGGED_IN_KEY',    'R@$1lW%;)RDN2uK^KmT:6jld9z3)PKx.K&|Dl{1 &1Siu%#tC*hgPApS-JPoh$3Z');
define('NONCE_KEY',        'YX-E7}?Mr+75y,ENskp=Nruv3aP6Xa<Vp[-Ii%S>z!qHr5v;Y~?mrM)T8+B}|27c');
define('AUTH_SALT',        'Qnijxqwm[l}o:)LEcHxcWz5/+d5;8)K{y3sy[4IOBL=mIf(PdE@v*f{|YQ^0S&/|');
define('SECURE_AUTH_SALT', 'Ht@qfWHgw2oA#wPX%qEwoe+/4=kM%;}v5UXdbNl$+wMqY-u,Gz-$A5VzpA2$*z3=');
define('LOGGED_IN_SALT',   'nU+Dd+rb*<NhMMe95L E(NlSq1o;M3P|e/gzO&8hFRczjs7_>j7~=r[n{&%a8*n%');
define('NONCE_SALT',       'l}hEHpuEMZXXnj-^}Cj._Sk97k]YMMz[d2v92h3<QJ+AxPYsrR3H[`El0I!rHzG&');

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.