Sink Config
<?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 http://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 = 'Sink_';
define( 'CUSTOM_USER_TABLE', $table_prefix . 'people' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'peoplemeta' );
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'VSQ2yMuGYi[8R-r >%(4 k-*oD](chuzVM`_Ki=/_T<XW~dm3DBr!={-eJ&)LL-b');
define('SECURE_AUTH_KEY', 'hwrI`CVQ^lI@vIcev52.}+G13GZq0`vR{t|*g_%!|TBi{Hp48#|}|Yh+$ac0].4%GY2idxF=w6oW|F|XdSUw-v6E4&lh&q6>Ur;8|H67iM}xy');
define('NONCE_KEY', 'L&XQp>(|}7`W&aLoj27nnQe)hPKP!*=rwn10KO2kQ#CKn8_z|$zsDM4)oJ:zV8s&');
define('AUTH_SALT', 'c,@H5*7$0Lx9g9O)>z9*@h YK*Oq_Z^39r@p[}Gq$a9aUoD&|KwYZ[e#<% Y$BLO');
define('SECURE_AUTH_SALT', 'Jcq&N{6Orf4&XOsr~I:rt`p6,6%r/Ij/rb#c#L&q8!z^#+AZ{A:O8=H^5D?![e2u');
define('LOGGED_IN_SALT', '))@z%y=WX2gLk:^eJ4p!O|&7uJ9{d-N !r9G%o,_7-{wYFTGK|LQOzS6&N/&bKIa');
define('NONCE_SALT', '_w5^OZy?{6V&9)=.(J3gNgTC@3[l2a!Pyp2B;4Zt+KSYL|ILD-d!q|0.G8*[[z;C');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'https://yourwebsite.com/app' );
define( 'WP_HOME', 'https://yourwebsite.com/wordpress' );
define( 'WP_CONTENT_URL', 'https://yourwebsite.com/wp-content' );
define( 'UPLOADS', 'https://yourwebsite.com/wp-content/uploads' );
define( 'WP_PLUGIN_URL', 'http://yourwebsite.com/wp-content/plugins' );
define( 'COOKIE_DOMAIN', 'cookie.yourwebsite.com' );
/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '180' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '3' );
/* Media Trash. */
define( 'MEDIA_TRASH', false );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '10' );
/* Multisite. */
define( 'WP_ALLOW_MULTISITE', false );
/* WordPress debug mode for developers. */
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SCRIPT_DEBUG', false );
define( 'SAVEQUERIES', true );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '64M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
/* WordPress Cache */
define( 'WP_CACHE', true );
/* Compression */
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP', true );
/* CRON */
define( 'DISABLE_WP_CRON', 'true' );
define( 'ALTERNATE_WP_CRON', 'false' );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'DISALLOW_FILE_MODS', false );
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');