find ./ -type f -exec chmod -v 644 {} \; // 모든 파일 퍼미션 644로 변경 find ./ -type d -exec chmod -v 755 {} \; // 모든 디렉토리 퍼미션 755로 변경 chmod 400 wp-config.php // config 파일 퍼미션 400 변경
find ./ -type f -exec chmod -v 644 {} \; // 모든 파일 퍼미션 644로 변경 find ./ -type d -exec chmod -v 755 {} \; // 모든 디렉토리 퍼미션 755로 변경 chmod 400 wp-config.php // config 파일 퍼미션 400 변경