Skip to content

Instantly share code, notes, and snippets.

@stevenbenisek
Created April 24, 2016 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevenbenisek/61d214ba9888789aee931c57c66676b2 to your computer and use it in GitHub Desktop.
Save stevenbenisek/61d214ba9888789aee931c57c66676b2 to your computer and use it in GitHub Desktop.
<?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