NGINX 업로드 파일 413 405

492 단어 nginx
콘 셉 트
413            ,        ,          。
405             。

413 해결 방법 설정 파일 nginx. conf
 http{}       client_max_body_size 10m;

백 엔 드 springboot 도 설정 해 야 합 니 다.
#      10M
spring.servlet.multipart.max-file-size = 10485760

405 nginx 는 post 로 정적 자원 에 접근 하 는 것 을 금지 합 니 다. service {} 에 추가 합 니 다.
 proxy_intercept_errors on;
 fastcgi_intercept_errors on;
 error_page 405 =200 $uri;

좋은 웹페이지 즐겨찾기