on
워드프레스 솔트키(salt key) 자동생성 주소
워드프레스 솔트키(salt key) 자동생성 주소
api.wordpress.org/secret-key/1.1/salt
워드프레스에서 자동생성해주지 않을 시(put your unique phrase here), 해당 코드로 직접 입력할 수 있는 솔트키(보안용도)
* 임의의 솔트값(Salt Key)이 새로고침시마다 매번 새로이 자동생성됨
- 입력하는 곳
wp-config.php
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');
를 아래와 같이 변경
define('AUTH_KEY', 'hC*yae@T=+2^(WWLm69M[T;OunfpbQy;B0z|r0=hw8(|ZlQ^|%8.k,04e3`=ARl,'); define('SECURE_AUTH_KEY', ')n %EwGm@ [email protected]^z?:a1.I+mRG&b0Bf;~N-w+y>ON?fb6~h!PG/V||}T3@P]s&C;`BS;F|b8^iUbp`|}mr0C#dsJA|'); define('SECURE_AUTH_SALT', 'xA!|~rn7 w|@`s ^fvbqGo{fjt
* 위에 예제(saltkey)는 공개되었기 때문에, 사용하지 마십시오.
from http://programics.tistory.com/62 by ccl(A) rewrite - 2021-06-08 15:25:04