From fc60118ff7c8d5adb298dfcbf7545fe501d0506c Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 8 Feb 2010 18:15:44 +0000 Subject: Update keys and salts with random values from api.wordpress.org. Props nacin. see #12159 git-svn-id: https://develop.svn.wordpress.org/trunk@13026 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-config-sample.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'wp-config-sample.php') diff --git a/wp-config-sample.php b/wp-config-sample.php index 3402b7b5f9..9806ae5ab3 100644 --- a/wp-config-sample.php +++ b/wp-config-sample.php @@ -34,18 +34,23 @@ define('DB_CHARSET', 'utf8'); define('DB_COLLATE', ''); /**#@+ - * Authentication Unique Keys. + * 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/ WordPress.org secret-key service} + * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/?salt=1 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', '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_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'); + /**#@-*/ /** -- cgit v1.2.3