Skip to content

Instantly share code, notes, and snippets.

@shawnkfinn
Created April 28, 2016 02:30
Show Gist options
  • Save shawnkfinn/aab7675d5f7728e17ce6fad33acf559c to your computer and use it in GitHub Desktop.
Save shawnkfinn/aab7675d5f7728e17ce6fad33acf559c to your computer and use it in GitHub Desktop.
Pantheon Sample Local WP Config
<?php
/**
* 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://codex.wordpress.org/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', 'DATABASENAME');
/** MySQL database username */
define('DB_USER', 'root');
/** MySQL database password */
define('DB_PASSWORD', 'root');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**#@+
* 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', 'zP!HX*3&bDq6{v_Nd.i9;T4x=eU1L1{|Fn(lj+>+HW>q2 1eMDQNkh*8Oc%wg{tm');
define('SECURE_AUTH_KEY', 'O>*}V {xmEe|?;H+~XsrdOm+J}#zA]e9:H@6!rP,~MPsBm]Hfmq6 {I6S1z<.3F{');
define('LOGGED_IN_KEY', '>F|66|9H@dbgdyCoGD`1{-EGDmXnNoSW;J`AAYrq20K{Su%R,$i92_e(}B`.NZvY');
define('NONCE_KEY', '#sp]pYd_|RF.;9q%bqy,%t?ke.`rk 1P]LRW!5P_{sIzM9OA2S(_{V4@^_g~`)8M');
define('AUTH_SALT', '>sCpU%W@=t{#r+2vtx74tvUmU7iEWjDLP>{6kwh37T4V3Y`La,7YhO=|$d2[O=t@');
define('SECURE_AUTH_SALT', 'N5(.UsDc9#F@*vI^WYX,utS: 5Ny83)7#;7Z=205)7I7_I&ue&wYY2(ZeBKa`J1,');
define('LOGGED_IN_SALT', 'CbFcnqe>7 -7sF{$V&(-])+)BDK%Xs0-L!R3<]ID.I7<$Qiz-5!6mjmt+A>YA3e{');
define('NONCE_SALT', 'Jo#Sl#u(?6^N|+i-^O%t9W,6q&NDoXDm!`d9v-Gz`4w9jFb#F`(+;mR`T`)Di;%7');
/**#@-*/
/**
* 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 = 'wp_';
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define('WP_DEBUG', false);
/* That's all, stop editing! Happy blogging. */
/** 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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment