파일 업로드 오류 413 (너무 큰 엔티티 요청)

742 단어 nginx
1. nginx 서버 역방향 프 록 시 설정 오류
프로필 수정
#vim /usr/local/openresty/nginx/conf/nginx.conf
server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
        
        client_max_body_size 20m; #          ,     ,     1m。
    }

이 명령 은 NGINX 가 처리 할 수 있 는 최대 요청 주체 크기 를 설정 합 니 다.요청 이 지정 한 크기 보다 크 면 NGINX 에서 HTTP 413 (Request Entity too large) 오 류 를 보 냅 니 다.서버 가 큰 파일 업 로드 를 처리 하면 이 명령 은 매우 중요 하 다.
2, spring boot 2 설정 업로드 파일
spring:
  servlet:
    multipart:
      enabled: true # Whether to enable support of multipart uploads.
      max-file-size: 10MB #       
      max-request-size: 100MB #        

좋은 웹페이지 즐겨찾기