413 Request Entity Too Large nginx django
You’ve fixed the issue on your HTTP server, but your HTTP server is set to 301 redirect to your HTTPS server… your HTTPS server does not have client_max_body_size configured, so it is defaulting to 1M & causing this 413 (Request Entity Too Large) error. To fix this issue, you simply need to add client_max_body_size to … Read more