워드프레스 – 업로드 파일 타입 추가 on AWS Lightsail
AWS 라이트세일에서 제공하는 bitnami 워드프레스 머신에서
업로드 가능한 파일 확장자를 추가하려고 한다.
파일 용량은 이미 80메가로 충분히 되어 있어 변경할 필요성을 못 느낌!
일단 아래글을 참고
업로드 파일 확장자 추가하기
wp-config.php 에 아래와 같이 한 줄 추가하고
// 20221214 BJ add file upload
define('ALLOW_UNFILTERED_UPLOADS', true);
/* That's all, stop editing! Happy publishing. */
"wp-config.php" 209L, 4481B written
테마 소스 수정에서 functions.php 에 아래 내용을 또 추가하고,
/** 20221214 BJ add custom mimes */
<strong>function</strong> <strong>add_custom_mime_types</strong> ( $mimes ) {
$mimes['gz'] = 'application/gzip';
// $mimes['hwp'] = 'application/hangul';
<strong>return</strong> $mimes;
}
add_filter('upload_mimes', 'add_custom_mime_types');
서비스 재시작~~
bitnami@ip-:~/stack/wordpress$ sudo apachectl configtest
Syntax OK
bitnami@ip-:~/stack/wordpress$ sudo /opt/bitnami/ctlscript.sh restart
Restarting services..
sudo apachectl configtest
sudo /opt/bitnami/ctlscript.sh restart
간단하게 functions.php 파일 수정을 그림으로 캡쳐해둠