Make WordPress Core


Ignore:
Timestamp:
02/08/2010 06:15:44 PM (15 years ago)
Author:
ryan
Message:

Update keys and salts with random values from api.wordpress.org. Props nacin. see #12159

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-config-sample.php

    r12733 r13026  
    3535
    3636/**#@+
    37  * Authentication Unique Keys.
     37 * Authentication Unique Keys and Salts.
    3838 *
    3939 * Change these to different unique phrases!
    40  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
     40 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/?salt=1 WordPress.org secret-key service}
    4141 * 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.
    4242 *
    4343 * @since 2.6.0
    4444 */
    45 define('AUTH_KEY', 'put your unique phrase here');
    46 define('SECURE_AUTH_KEY', 'put your unique phrase here');
    47 define('LOGGED_IN_KEY', 'put your unique phrase here');
    48 define('NONCE_KEY', 'put your unique phrase here');
     45define('AUTH_KEY',         'put your unique phrase here');
     46define('SECURE_AUTH_KEY',  'put your unique phrase here');
     47define('LOGGED_IN_KEY',    'put your unique phrase here');
     48define('NONCE_KEY',        'put your unique phrase here');
     49define('AUTH_SALT',        'put your unique phrase here');
     50define('SECURE_AUTH_SALT', 'put your unique phrase here');
     51define('LOGGED_IN_SALT',   'put your unique phrase here');
     52define('NONCE_SALT',       'put your unique phrase here');
     53
    4954/**#@-*/
    5055
Note: See TracChangeset for help on using the changeset viewer.