wp-config.php
<?php
/**
* Custom WordPress configurations on "wp-config.php" file.
*
* This file has the following configurations: MySQL settings, Table Prefix, Secret Keys, WordPress Language, ABSPATH and more.
* For more information visit {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
* Created using {@link https://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
*
* @package WordPress
* @generator GenerateWP.com
*/
/* MySQL settings */
define( 'DB_NAME', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'xoP)4-4gXmCQ-/>k&!fiS(/kOnr&&YA[Z|uF)@Soq(aF-Jd;&:[`k%~yN4tzkq ;');
define('SECURE_AUTH_KEY', 'zR.VI2>TwaX/(,i=,pF1$FOA~NVD-PX1_d2-O,n2N{CI:DjuldNf-U+V');
define('LOGGED_IN_KEY', 'xWk)!2(%i|yZBa=*) p5:)2oZ$=W)z+ OD=}utv!&5HIq!X]1h7a/^+--pl:I&D}');
define('NONCE_KEY', 'p6}4?},^oa6<qr3L74eU0_|)xL2448].|J2@|m;@#oPTiRgzViBYHgxO2#P^60|+');
define('AUTH_SALT', 'qosntgSQ`Le!Y+J1UI2I-V:9+01P[,Xas0` 1b BA-');
define('LOGGED_IN_SALT', '%i)B$D-/d]/&Qr{yea&tMq:4u/=-g^yANtdV#O+?g)+ck|jL ~_+TgB4pq~||]BL');
define('NONCE_SALT', 'P}K1GB.yAf6<NxFijqCAjQ8f6i-a%yvz`;1C)znasA2f[y(${GZm7=FR,c{k9U3B');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'http://example.com' );
define( 'WP_CONTENT_URL', 'http://example.com/wp-content' );
define( 'UPLOADS', 'http://example.com/wp-content/uploads2' );
define( 'WP_PLUGIN_URL', 'http://example.com/wp-content/plugins' );
/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '60000' );
/* Disable Post Revisions. */
define( 'WP_POST_REVISIONS', false );
/* Media Trash. */
define( 'MEDIA_TRASH', false );
/* Multisite. */
define( 'WP_ALLOW_MULTISITE', false );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '30M' );
define( 'WP_MAX_MEMORY_LIMIT', '265M' );
/* Compression */
define( 'COMPRESS_CSS', false );
define( 'COMPRESS_SCRIPTS', true );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', false );
define( 'DISALLOW_FILE_MODS', true );
define( 'DISALLOW_FILE_EDIT', true );
/* Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/* Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');