[apache/linux] 아마존 라이트세일 default 파일 업로드 사이즈 제한

프로그래밍/서버2020. 2. 20. 12:09

아마존 라이트세일을 이용중에 있습니다.

기본 파일 업로드 사이즈 제한이 얼마나 되는지 궁금해졌습니다.

 

 

아파치 서버에.. 전반적으로 영향을 미치는 설정은 httpd.conf에 작성하고..

개별 폴더에 적용할 설정은 .htaccess에 한다고 합니다.

 

aws lightsail 이용시..

.htaccess 파일은 기본적으로 없는 것 같습니다.

 

httpd.conf 파일은

/opt/bitnami/apache2/conf 경로에 가면 있습니다.

그런데 여기에선.. 딱히 업로드 파일 사이즈 제한이 없는 것 같네요.

 

대신에.. php쪽에서는 제한값이 보입니다.

/opt/bitnami/php/etc/php.ini

 

; Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
post_max_size = 40M

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 40M

; Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
http://php.net/post-max-size
post_max_size = 40M

 

; Maximum allowed size for uploaded files.
http://php.net/upload-max-filesize
upload_max_filesize = 40M

 

기본적으로 40MB를 허용하는 것 같습니다.

 

저는 이 값을 모두 4MB로 변경했습니다.

 

변경 후 서버를 재시작해야 적용된다고 합니다.

 

sudo /opt/bitnami/ctlscript.sh restart

 

위의 명령어로 서버를 재시작 시킵니다.

 

테스트 해보니.. 서버 재시작 후 바로.. 파일 업로드 사이즈 제한이 적용됩니다.

 

용량이 넘는 파일을 담아 request할 경우..

post값들은 다 무시되는 것 같네요..

그래서 아무값도 없이 request만 하게 됩니다.

파일도 전달되지 않는 것 같습니다.

 

참고

https://kin.naver.com/qna/detail.nhn?d1id=1&dirId=10503&docId=338222814&qb=aHRhY2Nlc3MuY29uZg==&enc=utf8§ion=kin&rank=1&search_sort=0&spq=0

 

https://docs.bitnami.com/bch/apps/wordpress-pro/administration/increase-upload-limit-php/

 

작성자

Posted by 드리머즈

관련 글

댓글 영역