diff options
author | Ryan Boren <ryan@git.wordpress.org> | 2010-02-08 18:15:44 +0000 |
---|---|---|
committer | Ryan Boren <ryan@git.wordpress.org> | 2010-02-08 18:15:44 +0000 |
commit | fc60118ff7c8d5adb298dfcbf7545fe501d0506c (patch) | |
tree | e6833a02ee70d75bb5f66673601b34d2e430dd80 /wp-config-sample.php | |
parent | 86d7ef0b69055c8a0a0fec7ac42561804724eee7 (diff) | |
download | wordpress-fc60118ff7c8d5adb298dfcbf7545fe501d0506c.tar.gz wordpress-fc60118ff7c8d5adb298dfcbf7545fe501d0506c.zip |
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
Diffstat (limited to 'wp-config-sample.php')
-rw-r--r-- | wp-config-sample.php | 17 |
1 files changed, 11 insertions, 6 deletions
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'); + /**#@-*/ /** |