반응형 EC22 [Nginx 업로드 오류] Failed to load resource: the server responded with a status of 413 (Request Entity Too Large) 오류 발생 Failed to load resource: the server responded with a status of 413 (Request Entity Too Large) nginx의 기본 업로드 크기가 요청보낸 업로드 용량보다 적은 경우입니다 vi /etc/nginx/nginx.conf nginx.conf인 설정파일을 에디터로 열고 (권한 오류가 있으면 명령어 앞에 sudo를 입력해줍니다) 해결 http { client_max_body_size 10M; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 4096; in.. 2023. 1. 25. Nginx php 연동(그누보드 php 다운로드 오류) Welcome to nginx가 index.html로 제대로 작동했지만 index.php등 php파일 경로로 이동하면 다운로드 되는 등 오류가 발생했습니다 vi /etc/nginx/nginx.conf nginx의 기본 설정 파일 nginx.conf 파일을 열어 수정합니다 # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /.. 2022. 12. 21. 이전 1 다음 반응형