-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwp-salt.php
17 lines (17 loc) · 1.11 KB
/
wp-salt.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**#@+
* 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/salt/ 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.
*
*/
define('AUTH_KEY', 'PiQ4BdEgTJmriHAwgygLqsJdiAA9cnBv1Af4qWXY8BPC5KeXXqbz1Dv9gvVfD4z2');
define('SECURE_AUTH_KEY', '1deXMrEzgVjF5cm3UcSGocCN7pwdFNchjC6MyGIEX2EGYidiFyBzsNEnx8GsqnL5');
define('LOGGED_IN_KEY', 'Eh4TN2yvuBiffqgXB1ufzc9Jx254oozY1YM4aKNoLrAEhM0onXfVYB5qVI4pemNL');
define('NONCE_KEY', 'K1o77utWXioURBSiDuVVWoRNggvtE6x34pfieEBDdLoTXQSUarJxgyp72MTK4Mt0');
define('AUTH_SALT', 'bFI7bhpMMgcPz5Lyhv7BEt8YxSoVgEjdw7fqFRd02BfEASYAnv1iwy1xWjTvFowR');
define('SECURE_AUTH_SALT', 'WVDWqaI2y2v7hE1jm1QIKjMcKYbDhTpdAvLX7GocjxRYcXXBwKELI6ssPSVe8Cn4');
define('LOGGED_IN_SALT', 'F4Nj8MRMyrePAUJ0521mYmAntaHGga3HvjnRc1cJYStU4ICMoav5u1Ly6D1yCnex');
define('NONCE_SALT', 'eKwsqN2CW36HgDh8ALYivrQtiewPPSRBCMIGTmNp47TPWy3MI6U5RWTV1nA1agP1');