Hi@akhtar,
You can make use of the LimitRequestBody directive to limit upload file size.
<Directory "usr/local/apache2/uploads">
LimitRequestBody 9000
</Directory>
The value assigned to the LimitRequestBody allows Apache to accept and store file uploads of 9000 bytes by users. You can adjust the value based on the requirement.