Apache download size limit? - GNU/Linux

Users browsing this thread: 1 Guest(s)
xero
Long time nixers
for an apache specific solution you need to use LimitRequestBody.

the value of LimitRequestBody can be between 0 bytes (unlimited) to 2147483647 (2GB).

for example,if you want to limit upload size to 100k for /srv/http/htdocs/uploads, add the following to .htaccess or httpd.conf.
Code:
<Directory "/srv/http/htdocs/uploads">
    LimitRequestBody 102400
</Directory>


Messages In This Thread
Apache download size limit? - by sodaphish - 16-07-2014, 07:46 PM
RE: Apache download size limit? - by venam - 17-07-2014, 02:41 AM
RE: Apache download size limit? - by xero - 05-08-2014, 01:36 PM