What is the maximum file size I can transfer using HTTP? And using FTP?

前端 未结 7 843
面向向阳花
面向向阳花 2020-12-15 17:34

Added: I am conducting a study for a new system we\'re going to develop in my work. It consists in authenticating users, displaying what files they want to

7条回答
  •  遥遥无期
    2020-12-15 18:05

    As already answered, the protocol has no limitations, but most HTTP servers have default upload limits out-of-the-box:

    IIS6 uses MaxRequestEntityAllowed (default is 4GB) and AspMaxRequestEntityAllowed (default is 200000 bytes) in metabase.xml.

    IIS7 uses maxRequestEntityAllowed: **appcmd set config /section:asp /maxRequestEntityAllowed:***int* (default is 200000 bytes)

    Apache uses LimitRequestBody (default is 2GB)

提交回复
热议问题