Changes between Initial Version and Version 1 of Ticket #34968


Ignore:
Timestamp:
Nov 13, 2023, 5:25:19 AM (10 months ago)
Author:
Standa Opichal
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34968 – Description

    initial v1  
    33This is caused by the 1024 value being hardcoded here https://github.com/django/django/blob/main/django/http/multipartparser.py#L743
    44
     5Here is a common http header fields limits across popular web servers (from https://stackoverflow.com/a/60623751/2448773):
     6 * Apache - 8K
     7 * Nginx - 4K-8K
     8 * IIS - 8K-16K
     9 * Tomcat - 8K – 48K
     10 * Node (<13) - 8K; (>13) - 16K
     11
    512Also reported at https://stackoverflow.com/questions/70572148/django-silently-discarding-uploaded-files-with-long-paths
Back to Top