Created
April 24, 2016 10:26
-
-
Save stevenbenisek/61d214ba9888789aee931c57c66676b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* MySQL settings | |
*/ | |
define('DB_NAME', 'username'); | |
define('DB_USER', 'root'); | |
define('DB_PASSWORD', 'password'); | |
define('DB_HOST', 'localhost'); | |
/* | |
* Increase security | |
* @link https://api.wordpress.org/secret-key/1.1/salt | |
*/ | |
define('AUTH_KEY', 'put your unique phrase here'); | |
define('SECURE_AUTH_KEY', 'put your unique phrase here'); | |
define('LOGGED_IN_KEY', 'put your unique phrase here'); | |
define('NONCE_KEY', 'put your unique phrase here'); | |
define('AUTH_SALT', 'put your unique phrase here'); | |
define('SECURE_AUTH_SALT', 'put your unique phrase here'); | |
define('LOGGED_IN_SALT', 'put your unique phrase here'); | |
define('NONCE_SALT', 'put your unique phrase here'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment