Skip to content

Instantly share code, notes, and snippets.

@Fixmysite
Created March 8, 2020 22:15
Show Gist options
  • Save Fixmysite/659f033c1be88c6861342163c1a985fc to your computer and use it in GitHub Desktop.
Save Fixmysite/659f033c1be88c6861342163c1a985fc to your computer and use it in GitHub Desktop.
/** MySQL database password */
define('DB_PASSWORD', 'password_here');
/**
* Authentication Unique Keys and Salts.
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
*/
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