欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)【上传图片】

程序员文章站 2024-02-01 21:12:10
...

1、错误描述


Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)

2、错误原因与解决方法

      1.上传文件时,利用localhost访问系统,不会出现这个问题;用域名访问这个系统时,出现这个问题,提示是:请求实体太大由于Nginx反向代理服务器client_max_body_size默认值为1MB,而上传文件大于1MB,所以就出现这个错误


#user  nobody;
worker_processes  2;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;
	client_max_body_size 100m;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
	
	#FindAI域名 - 保研岛 - 暂时给芝士校园
    server {
        listen       80;
        server_name  findai.wang;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {		
            proxy_pass   http://127.0.0.1:8881;
        }
		

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

	#GREC.FindAI域名-刚哥的GREC
	server {
		listen       80;
		server_name  grec.findai.wang;

		location / {		
			proxy_pass   http://127.0.0.1:8882;
		}
	}
	
	
	
	#TodayDream域名-保研岛
	#TodayDream域名-保研岛
	server {
		listen       80;
		server_name  baoyan.findai.wang;

		location / {		
			proxy_pass   http://127.0.0.1:6688;
		}
	}
	#TodayDream域名-保研岛
	server {
		listen       80;
		server_name  todaydream.findai.wang;

		location / {		
			proxy_pass   http://127.0.0.1:6688;
		}
	}
	#TodayDream域名-保研岛
	server {
		listen       80;
		server_name  xkk.findai.wang;

		location / {		
			proxy_pass   http://127.0.0.1:6688;
		}
	}
	#TodayDream域名-保研岛
	server {
		listen       80;
		server_name  todaydream.cn;

		location / {		
			proxy_pass   http://127.0.0.1:6688;
		}
	}

    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

       2.Springboot中,上传文件大小限制过小。       

#控制文件上传的大小
spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=1000MB